I noticed that i can never memcache class objects that are defined within the web2py part of my code. Simple things like dicts, list or class objects defined outside web2py (in my GAE root) are ok. Row object also don't pickle with GAE. I always convert them to dicts. I did some digging some time ago and found that the GAE pickler tries to import the object it's pickling and to do that it looks at the "__module__" attr of the object which for those objects is set to "__restricted__". It cannot import that module so it fails.
Or something like that. -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Report Issues) --- You received this message because you are subscribed to the Google Groups "web2py-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.

