You're doing it wrong.  You need to back memcache with something
persistent, like the datastore.  You could put something into memcache
and the next second it is gone.

from http://code.google.com/appengine/docs/python/memcache/usingmemcache.html

The application checks whether the data needed to satisfy that query
is in memcache.
If the data is in memcache, the application uses that data.
If the data is not in memcache, the application queries the datastore
and stores the results in memcache for future requests.




On Sep 30, 11:58 am, sahid <sahid.ferdja...@gmail.com> wrote:
> I store my users sessions in memcache (like jaikuengine) but when site
> traffic is the highest my users are disconnected,
> i suppose the probleme comes from memcache, because memcache removes
> old items if the max size is exceeded.
>
> Now i use about 900mega of memcache but at the night (i'm in france) i
> can use more... may be 1giga,
>
> i would know if memcache is limited?
>
> APPID: devel-inchallah
>
> Cordially,
> Sahid

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.

Reply via email to