Using Memcached with Java applications
Memcached is an open source, high-performance, distributed memory object cache which is usually used for speeding up web applications by reducing the load on the database tier. It is actually a simple key/value store with a simple API which promotes the quick deployment of memcached and quick development of applications using memcached.
The design philosophies [...]
Understanding Java Security and JAAS (part 2)
This is the second article in the 3-part Java Security and JAAS series. The first part (here) explains the basics of Java Security, this (second) part explains the concept and use of JAAS. There is a demo associated with this part as well (see link a the end of the article). In the last part [...]