RE: [google-appengine] Re: __setattr__ and __getattr__ causing memcacahe error in 1.8.5

2013-10-01 Thread Brian Becker
PM UTC+8, Brian Becker wrote: Yes. def __setattr__( self, name, value ): if name == 'orig': # force value to string kill whitespace value = unicode(value).strip() ## Lots more cleaning is necessary # clean off

RE: [google-appengine] Re: __setattr__ and __getattr__ causing memcacahe error in 1.8.5

2013-10-01 Thread Brian Becker
had exactly the same error as you. T On Tuesday, October 1, 2013 4:51:26 PM UTC+8, Brian Becker wrote: Neither, it is strictly a service which processes a string and spits back a result. From: google-a...@googlegroups.comjavascript: [mailto:google-a...@googlegroups.comjavascript:] On Behalf

RE: [google-appengine] Re: __setattr__ and __getattr__ causing memcacahe error in 1.8.5

2013-10-01 Thread Brian Becker
memcacahe error in 1.8.5 If you look at the SO q/a you will see the problem is with the __getattr__ T On Tuesday, October 1, 2013 6:14:53 PM UTC+8, Brian Becker wrote: I got rid of my __getattr__ and use @property for most of them. I didn't touch the __setattr__ but memcache is working just fine now

[google-appengine] __setattr__ and __getattr__ causing memcacahe error in 1.8.5

2013-09-30 Thread Brian Becker
After upgrading to 1.8.5 (from 1.8.1) I instantly had Internal Server Error whenever my class was instantiated and placed in memcache: daRef = oRefFinder() memcache.set( 'theRef', daRef) The last lines of the error trace says that the memcache.set command: File

RE: [google-appengine] Re: __setattr__ and __getattr__ causing memcacahe error in 1.8.5

2013-09-30 Thread Brian Becker
and __getattr__ causing memcacahe error in 1.8.5 You should show some code. Are you actually overriding __settattr__ and __getattr__ in your models ? T On Tuesday, October 1, 2013 12:34:12 PM UTC+8, Brian Becker wrote: After upgrading to 1.8.5 (from 1.8.1) I instantly had Internal Server Error whenever my

[google-appengine] Re: DEVSERVER ERROR: regular expression code size limit exceeded

2012-04-12 Thread Brian Becker
I still need an answer to this. The RegEx runs great on GAE but not in the DevServer because it gives regular expression code size limit exceeded And yes, my RegEx is actually 47k. On Friday, March 30, 2012 10:13:35 AM UTC-5, Brian Becker wrote: My regular expression is 47k. I get

RE: [google-appengine] Re: DEVSERVER ERROR: regular expression code size limit exceeded

2012-04-12 Thread Brian Becker
. If not, then this isn't a GAE issue - you need to find out why from your JVM provider. Maybe Google use 64bit and you use 32bit? Or different vendors (OpenJDK vs Sun vs whatever)? Mat. On 12 April 2012 16:12, Brian Becker br...@semo.netmailto:br...@semo.net wrote: I still need an answer

[google-appengine] DEVSERVER ERROR: regular expression code size limit exceeded

2012-03-30 Thread Brian Becker
My regular expression is 47k. I get this error when running on the DevServer but it runs fine on GAE. *How can I increase the size of the Regular Expression limit on the DevServer?* -- You received this message because you are subscribed to the Google Groups Google App Engine group. To

[google-appengine] white screen of death fixed with two main() and two if __name__ == __main__:

2009-11-26 Thread Brian Becker
/',shop) ], debug=True) def main(): run_wsgi_app(application) if __name__ == __main__: main() Brian Becker - br...@semo.net President/CEO Poplar Bluff Internet, Inc. Home of semo.net, Shelton Internet, IMS Internet