4. GAE issues AND GAE Datastore - SuYehTarn/CS651_PhotoPostAdvisor GitHub Wiki
Part 1:
We did not face any special issues with the GAE Datastore.
Part 2:
We are using the Cloud Vision API and the Datastore API.
Vector Entities
We store word vectors as entities in the datastore. The kind is Vector
, the key is the word literal, it has a property of vector which is a comma-separated string.
Photo Entities
We temporary store the photo information as entities in the datastore. The kind is the FB page ID, the key is the FB photo ID, it has three properties.
- Likes: the like counts.
- url: the public image URL of the photo.
- comments: a string array of the comments.