appengine-magic icon indicating copy to clipboard operation
appengine-magic copied to clipboard

A library designed to make it easy to use Google App Engine from Clojure

Results 18 appengine-magic issues
Sort by recently updated
recently updated
newest added

Hi guys I'm struggling with my first attempt with appengine-magic, I followed your getting started steps closely but this is my error whrn try dev_appserver.sh ``` tangrammers-Mac-mini:buscator tangrammer$ dev_appserver.sh war/...

Using the appstats tool for my GAE project, I found that counting the entities in a query before executing it took about 160% as long as just executing the query...

Following the instructions for 0.5.1, I got this error: Could not find artifact appengine-magic:appengine-magic:jar:0.5.1-SNAPSHOT in clojars (https://clojars.org/repo/) I fixed this by changing the :dependencies and :plugins in project.clj to reflect...

Hi, Consider following: ``` Clojure (ds/defentity Item [^:key key-text value-text]) (ds/save! (new Item "one" "two")) ``` Then I evaluate following multiple times: ``` Clojure (ds/query :kind Item) ``` At the...

while working on [1.8.x sdk support](https://github.com/avishai-ish-shalom/appengine-magic/tree/appengine-sdk-1.8.3) i encountered a classloader error in the dev server: ``` java.lang.ClassCastException: com.google.appengine.tools.development.ApiProxyLocalImpl cannot be cast to com.google.appengine.tools.development.ApiProxyLocal ``` This was caused by `com.google.appengine/appengine-api-stubs` and...

When I run `lein appengine-prepare` it output this error: ``` java.io.FileNotFoundException: Could not locate lancet/core__init.class or lancet/core.clj on classpath: at clojure.lang.RT.load(RT.java:432) at clojure.lang.RT.load(RT.java:400) at clojure.core$load$fn__4890.invoke(core.clj:5415) at clojure.core$load.doInvoke(core.clj:5414) at clojure.lang.RestFn.invoke(RestFn.java:408) at...

I added an issue to Clojure core to add support for App Engine threads: http://dev.clojure.org/jira/browse/CLJ-1223 Please help spur this along by adding your insights/comments/corrections to the ticket.

First off, I hope appengine magic continues to evolve as it fills a big gap and is very helpful. In any case, we just started using the FileService api to...

Hi, I think there is an error in the datastore part of the README.md documentation where it says that properties can be marked ^:clj for serialization, but it should be...