Friday, January 9, 2009
Repcached - Replicated memcached
http://repcached.lab.klab.org/. For now it only works on linux. Hopefully, Win32 version
will follow soon.
Sunday, October 5, 2008
Memcached 1.2.6 for Windows
http://code.jellycan.com/memcached/
It has quite a few bugs and crash fixes.
Sunday, September 7, 2008
Improve ASP.net response time
- View State
o Reduce the use of view state as much as possible.
o If need to store objects in view state consider using type convertors.
o Move view state to the bottom of the page.
- Java Script and CSS
o Try to use ToolkitScriptManager instead of ScriptManager if using ASP.net AJAX Control Toolkit. It has the ability to combine Toolkit scripts together to reduce number of request.
o Use release mode in production for ToolkitScriptManager to get already compact ASP.net AJAX Control Toolkit script files.
o Combine custom java script and CSS files into one file.
o Cache CSS and Java Script in the browser.
o Compact Java Script and CSS to reduce size.
- Images
- Cache
o Cache data and page output. (Note: ASP.net cache is not a distributed cache and will not work in a Web farm. Consider using memcached and memcached providers.)