Arc Forumnew | comments | leaders | submitlogin
1 point by conanite 5161 days ago | link | parent

What does App Engine do to closures that requires Jarc to deal with them differently?


2 points by jazzdev 5161 days ago | link

App Engine is a distributed web server, so you can't save a closure in memory on server A and have your next request handled by server B. I believe the only options are storing the closure in the distributed memory cache (memcache) or in the distributed persistence store (datastore). In either case you need to be able to serialize the closure.

-----