Showing posts with label Memcached. Show all posts
Showing posts with label Memcached. Show all posts

Friday, January 9, 2009

Repcached - Replicated memcached

Replicated version of memcached can be downloaded from the following
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

Memcached 1.2.6 for Windows can be downloaded from the following link

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.

o   Compress View State.

-         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

o       Cache Images in browser.

-         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.)