[google-appengine] Re: Will memcache data ever be evicted if have spare memory?

2009-10-30 Thread loell
Hi i would just like to ask a related question with memcaching data from the datastore, so what's the effective design with datastore memcaching? is it just? "" evaluate all items in the memcache set, and if there is no "none" then OK. else repeat the GQL operation then reset all memcache items

[google-appengine] Re: My memcache items are randomly removed?

2009-10-30 Thread loell
n OK. else repeat the GQL operation then reset all memcache items again in the memcache set. is this the only way? On Oct 28, 6:07 pm, "Nick Johnson (Google)" wrote: > Hi loell, > > Memcache is, as the name implies, a cache. Any key may be evicted at any > time, tho

[google-appengine] Re: My memcache items are randomly removed?

2009-10-27 Thread loell
en anecdotal claims of 10MB), with the least recently used > items evicted first. > > On Oct 27, 1:56 pm, loell wrote: > > > > > additional info: the Items in question are still retrievable in just a > > couple of minutes, usually.  but after that,  it just returns none.

[google-appengine] Re: My memcache items are randomly removed?

2009-10-27 Thread loell
additional info: the Items in question are still retrievable in just a couple of minutes, usually. but after that, it just returns none. while part of the items in that set is still retrievable and all other memcache sets are still intact. On Oct 28, 1:48 am, loell wrote: > hi, being used

[google-appengine] My memcache items are randomly removed?

2009-10-27 Thread loell
hi, being used to the development's server, handling of memcache, and that memcache items stays as long as it can. I'm really puzzled why some of my items returns "None" while part of that particular memcache- set is still retrievable on the production server. is this normal? --~--~-~--

[google-appengine] my jquery post isn't working after deployment.

2009-06-16 Thread loell
$.post("/gettags",{ppa_name: '{{ppaname}}' }, function (data ,textStatus){element.innerHTML = data; } ) I'm puzzled why this piece code is properly working on localhost, but when deployment it won't. does jquery's "post" method works for you? or are there any caveats that i should know? --~--~

[google-appengine] Re: Complete Newb Question

2008-10-27 Thread loell
you need to enclose that in a class like the examples you've been reading, and enclose that line, specifically on a get method. let's say for example you named the class as "MainPage" in the above example , then it must be mapped in "/" like --- from google.appengine.ext.webapp import Req

[google-appengine] Re: Complete Newb Question

2008-10-25 Thread loell
Typically, it should go something like this, class MainPage(webapp.RequestHandler): def get(self): data = cgi.escape(self.request.get('data')) fishfin wrote: > I'm coming over from php and am trying to figure out how to do > something. > > In php you can put data in the user's addre