Archive for 六月, 2010

AutoHotkey

星期二, 六月 22nd, 2010

AutoHotkey – Free Mouse and Keyboard Macro Program with Hotkeys and AutoText

AutoHotkey

使用VLC播放media stream 到華電MOD

星期一, 六月 14th, 2010

【教學】使用VLC播放media stream 到華電MOD – PCZONE 討論區

使用VLC播放media stream 到華電MOD

中華電信MOD的STB另類用法,MOD用戶必讀!

星期一, 六月 14th, 2010

【教學】中華電信MOD的STB另類用法,MOD用戶必讀! – PCZONE 討論區

中華電信MOD的STB另類用法,MOD用戶必讀!

怎样用API函数登录WinNT

星期一, 六月 14th, 2010

问专家-怎样用API函数登录WinNT

Facebook 成立了一個產學互助計畫

星期一, 六月 14th, 2010

Facebook | Sophia Huang

你有認識在美攻讀博士學位的同學嗎?Facebook 成立了一個產學互助計畫 (Facebook Fellowship Program)提供獎助學金,資助與Internet economics, cloud computing, social computing, data mining, machine learning, and systems以及information retrieval等相關主題的研究計畫。有興趣的同學快來看看,也可以推薦給你的朋友。

Understanding Connection Pooling in .NET

星期四, 六月 3rd, 2010

Understanding Connection Pooling in .NET: ASP Alliance

Abstract
Connection Pooling can increase the database performance to a huge extent. This article discusses what Connection Pooling actually is, how it can boost the performance of database access and how we can create a Connection Pool in .NET and add and remove connections to it.

Tuning Up ADO.NET Connection Pooling in ASP.NET Applications

星期四, 六月 3rd, 2010

15 Seconds : Tuning Up ADO.NET Connection Pooling in ASP.NET Applications

Connection Pooling Basics

Intel Atom Developer – CEP Premium
Enter your netbook app into the Intel® Atom™ Developer Challenge by 6/ 14.
appdeveloper.intel.com/challenge
AutoCAD® Trial Download
Free 30 Day Trial Of AutoCAD 2011. Save Time And Increase Productivity
Autodesk.com/AutoCAD
Microsoft SQL Server® 2008 – Free Trial
Download the Free 180-day Trial of SQL Server® 2008 Enterprise Edition!
Microsoft.com/EverybodysBusiness

Opening a database connection is a resource intensive and time consuming operation. Connection pooling increases the performance of Web applications by reusing active database connections instead of creating a new connection with every request. Connection pool manager maintains a pool of open database connections. When a new connection requests come in, the pool manager checks if the pool contains any unused connections and returns one if available. If all connections currently in the pool are busy and the maximum pool size has not been reached, the new connection is created and added to the pool. When the pool reaches its maximum size all new connection requests are being queued up until a connection in the pool becomes available or the connection attempt times out.