[google-appengine] Re: How to fix pickling error

2008-12-21 Thread Andy Freeman
Is there an issue on this? (I couldn't find one.) I'll star it if there is otherwise I'll add one. I ask because not being able to memcache/pickle query objects is something of a pain for me. (Caching/pickling query results isn't an option for my application.) On Nov 12, 9:50 am, Marzia Nicco

[google-appengine] Re: How to fix pickling error

2008-12-20 Thread Davide Ferrero
I had some problems while I tried storing in memcache a query object obtained with the fuction db.GqlQuery(...) and I've solved my issue with Entity.all() function... The same problem appears when I try to storing in memcache a python list that contains several Object that I've created. I've pyba

[google-appengine] Re: How to fix pickling error

2008-11-12 Thread gg
Helpful error : ) back-references modelname_set is a query On Nov 12, 9:50 am, Marzia Niccolai <[EMAIL PROTECTED]> wrote: > If you are seeing this error message in your logs: > > PicklingError: Can't pickle : it's not found as > __builtin__.instancemethod > > This indicates that you are storing a

[google-appengine] Re: How to fix pickling error

2008-11-12 Thread gg
Same problem here on: econe.appspot.com bwork.appspot.com On Nov 12, 9:41 am, Marzia Niccolai <[EMAIL PROTECTED]> wrote: > Hi, > > What is the error that you are seeing?  And what are you trying to add to > Memcache? > > Our engineers are looking in to fixing this issue with Memcache, but it's >

[google-appengine] Re: How to fix pickling error

2008-11-12 Thread Marzia Niccolai
If you are seeing this error message in your logs: PicklingError: Can't pickle : it's not found as __builtin__.instancemethod This indicates that you are storing a query object in Memcache, which is currently causing issues. The fix that benben suggested will fix this issue. -Marzia On Wed, No

[google-appengine] Re: How to fix pickling error

2008-11-12 Thread Marzia Niccolai
Hi, What is the error that you are seeing? And what are you trying to add to Memcache? Our engineers are looking in to fixing this issue with Memcache, but it's usually not advisable to put a query object in Memcache, one almost always wants to store the results of the query. If this is not the

[google-appengine] Re: How to fix pickling error

2008-11-12 Thread sirdarckcat
Hi! Im having the same problem on adding stuff to memcache! The error log shows it started 10 hours ago, and it hasnt been fixed since then. Do you guys think it'll be fixed? Greetings!! On Nov 12, 12:48 am, benben <[EMAIL PROTECTED]> wrote: > First ,thanks Marzia Niccolai for his email  . >