Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is Clojure concurrency support still disabled on App Engine?

In a recent blog post, Adrian Mouat said that App Engine doesn't support Clojure concurrency, such as agents. However, GAE Java supports threads as of the App Engine 1.6.4 release.

Is the Clojure concurrency model fully supported on App Engine?

like image 941
espeed Avatar asked Oct 07 '12 21:10

espeed


1 Answers

I know one would have to use their Thread Manager API for thread creation. For appengine front ends each created thread would still be tied to the current request. On an appengine back end you would be able to make background thread would persist after the request was handled. I do not know about other libraries,but appengine-magic has not been updated since Google App Engine SDK 1.6.3.1 release with little activity on the forks,but updating it to the latest appengine api was a summer of code project proposal for 2012.

like image 159
dspiteself Avatar answered Oct 10 '22 08:10

dspiteself