Folks, The problem was in Scala's rep1sep parser method. It grows stack, about 20 frames per element, and thus bad things happen around 200 elements. I replaced the code with a while loop. Less elegant on the page, more elegant in execution.
Thanks, David On Mon, Feb 16, 2009 at 7:38 AM, David Pollak <[email protected] > wrote: > Okay... I've issolated the problem. Lots of GC items being sent. This is > causing a stack overflow. I've got a test for it and I'll fix the problem > today. > > > On Mon, Feb 16, 2009 at 1:33 AM, Tim Perrett <[email protected]> wrote: > >> >> >> In wireshark you'll be looking to use a normal HTTP rule as the JSON >> will just be passed as entity body in the request. Doing a filter for >> HTTP port 80 should be sufficient. >> >> Cheers >> >> Tim >> >> >> >> >> > > > -- > Lift, the simply functional web framework http://liftweb.net > Beginning Scala http://www.apress.com/book/view/1430219890 > Follow me: http://twitter.com/dpp > Git some: http://github.com/dpp > -- Lift, the simply functional web framework http://liftweb.net Beginning Scala http://www.apress.com/book/view/1430219890 Follow me: http://twitter.com/dpp Git some: http://github.com/dpp --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Lift" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/liftweb?hl=en -~----------~----~----~----~------~----~------~--~---
