the batch operation for getting the entity are stated below:
A batch get. entities = db.get([k1, k2, k3])
How can I fetch all entities without supplying keys?
the batch operation for getting the entity are stated below:
How can I fetch all entities without supplying keys?
An easy was to do this is using gql with a condition that is always true and fetch the results. E.g. if your entity has a string field that's name is StringKey, you could do:
Note that getting more than 1000 entities is possible, but not straightforward in GAE, see this discussion.
I got a solution on this and can be found in Datastore Queries - Query interface example:
I did not add filter in query since it return all entities from datastore.