[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 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 view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine/-/vr3AW3QJnv0J.
To post to this group, send email to google-appengine@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.



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

2012-04-12 Thread Matthew Jaggard
Wow, that's some crazy regex.

Can you confirm that it runs correctly on your local JVM outside of the
DevServer. 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.net wrote:

 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 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 view this discussion on the web visit
 https://groups.google.com/d/msg/google-appengine/-/vr3AW3QJnv0J.
 To post to this group, send email to google-appengine@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.


-- 
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-appengine@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.



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

2012-04-12 Thread Brian Becker
Whoops - detail missing: This is Python.

The code is very complex...I'm not sure how easy it will be to run it outside 
the DevServer. Is that really the only way to figure this out?

From: google-appengine@googlegroups.com 
[mailto:google-appengine@googlegroups.com] On Behalf Of Matthew Jaggard
Sent: Thursday, April 12, 2012 10:17 AM
To: google-appengine@googlegroups.com
Subject: Re: [google-appengine] Re: DEVSERVER ERROR: regular expression code 
size limit exceeded

Wow, that's some crazy regex.

Can you confirm that it runs correctly on your local JVM outside of the 
DevServer. 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 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 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 view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine/-/vr3AW3QJnv0J.
To post to this group, send email to 
google-appengine@googlegroups.commailto:google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.commailto:google-appengine%2bunsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.

--
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-appengine@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.

-- 
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-appengine@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.



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

2012-04-12 Thread Barry Hunter
On Thu, Apr 12, 2012 at 5:51 PM, Brian Becker br...@semo.net wrote:
 Whoops – detail missing: This is Python.



 The code is very complex…I’m not sure how easy it will be to run it outside
 the DevServer. Is that really the only way to figure this out?

Well you dont need to run the whole code. Just extract the regular expression.

But you really do need to narrow it down to where the underlying issue
is. Removing components from the situation is a good way to narrow it
down. Repeat until find the exact cause. Sort of a binary search :)





 From: google-appengine@googlegroups.com
 [mailto:google-appengine@googlegroups.com] On Behalf Of Matthew Jaggard
 Sent: Thursday, April 12, 2012 10:17 AM
 To: google-appengine@googlegroups.com
 Subject: Re: [google-appengine] Re: DEVSERVER ERROR: regular expression code
 size limit exceeded



 Wow, that's some crazy regex.



 Can you confirm that it runs correctly on your local JVM outside of the
 DevServer. 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.net wrote:

 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 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 view this discussion on the web visit
 https://groups.google.com/d/msg/google-appengine/-/vr3AW3QJnv0J.
 To post to this group, send email to google-appengine@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.



 --
 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-appengine@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.

 --
 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-appengine@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.

-- 
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-appengine@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.