GAE issues & GAE DataStore - abinayaramachandran/Facebook-Tweet GitHub Wiki
GAE ISSUES AND GAE DATASTORE:
Part 1: Issues and changes made
We did not face any issues using the Google App Engine. We created a project on GAE and deployed our project from eclipse to the project in GAE and could find that the project is working completely after being deployed to GAE.
** Part 2**
The data being stored in the GAE Datastore are Name/ID, firstname ,lastname, picture, status,timestamp, visited count, user_id
/***
Column Name | Description |
---|---|
Name/ID | unique id(key) being generated for each entry into the table |
------------------------- | ----------------------------------- |
Firstname & Lastname | Name of user posting tweet |
------------------------- | ------------------ |
Picture | Profile picture of user posting |
------------------------- | ------------------ |
Status | Tweet Posted |
------------------------- | ------------------ |
Timestamp | Date & Time of tweet posted |
------------------------- | ---------------------------- |
Visited count | Number of times the tweet was viewed |
------------------------- | ------------------ |
user_id | Id of user logged into app |
***/ |
App usage screenshot
Entity of DataStore Screenshot
Data to this datastore is added and deleted by Java Servlets. GaeStoreServlet takes care of the data being stored and deleted in the datastore .
GAE Dashboard