I'm trying to use Datastore Appengine on clojure Intellij
There's someone here that uses?
When I run something from
com.google.appengine.api.datastore
gives me this error:
cause No API environment is registered for this thread.
I'm only using:
com.google.cloud.datastore
because of this, and the google.cloud.datastore is deprecated I think
=\
Hey there. Look for a lib on github called SimpleValue
Everything you need to use datastore api is in there. We based all our stuff on that. I'm not near my laptop now, but I'll gladly share some code with you if you don't come right.
The problem with SimpleValue is that everythoing is wrote on REST API
=/
I used the api classes a bit in cloud dataflow.
mainly from com.google.datastore.v1
(I didn’t know it was deprecated…)
still seems like it’s active a few days ago: https://github.com/googleapis/google-cloud-java
the latest one actually looks a bit neater: https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-datastore
But in our core library that we use for all our apps, we use the REST API, and it works really well.