on GAE i use it quite a lot.....i keep some settings in the DB, and some other content that does not change in the DB very frequently. for those things i query them once from the DB and store objects in memcache for say 1 hour. that cuts my response time significantly.
in short, memcache is a readable storage (and editable in some APIs) that is much faster than the DB, but it is not permanent. used well for short-term caching of frequent reads. cfh On Thursday, June 14, 2012 8:03:26 AM UTC-7, Hassan Alnatour wrote: > > Dear ALL, > > I just want to know when yo use Memcache , and what can i benefit from > using it >

