Java Memcache?

This Comment will be submitted for moderation and will not be accessible to other users until it has been approved.


15 points

How can Java be integrated with Memcache? What are the main key items to look for for building high traffic Java applications?



-11 points

High performance scalable web applications in Perl, Php, Java or anything else often use a distributed in-memory data cache in front of or in place of robust persistent storage for some tasks. Memcache is the most popular storage used as a cache.

You would need to install Memcache on your server. Once, installed you would need a Java client to access memcache. Something like: http://wiki.github.com/gwhalin/Memcached-Java-Client/.

For scalibility, its a general question with no particular answer. The architecture has to be correct, the servers have to be correct and distributed, database should have optimized queries. Not sure, but this may help: scalability and optimization java

Anonymous's picture
Created by Anonymous

Post Comment

  • You can enable syntax highlighting of source code with the following tags: <code>, <blockcode>, <c>, <cpp>, <drupal5>, <drupal6>, <java>, <javascript>, <php>, <python>, <ruby>. Beside the tag style "<foo>" it is also possible to use "[foo]". PHP source code can also be enclosed in <?php ... ?> or <% ... %>.