Advertisement
Guest User

Untitled

a guest
May 27th, 2015
312
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. Design a sample twitter web application with Play Framework 2.3.x with Java. The requirements for this app are:
  2.  
  3. A user can register with and login/logout of the app
  4. Create a user management scheme that is scalable to N number of nodes of Play servers
  5. A user can broadcast a tweet (all other registered users can view it)
  6. A user can view other user's tweets and when they were posted.
  7. A tweet should be a textual 140-character string
  8. Create a basic UI to demonstrate posting and view tweets.
  9. The system shall be to store user's tweets (persistent storage)
  10. A user shall be able to view tweets in real-time (i.e. if User A posted a tweet, User B should see the post right away if User B is logged in.)
  11.  
  12.  
  13. Document the design patterns and development methods used in building
  14. this client. Identify how you would theoretically scale your design and infrastructure to accommodate a large number of concurrent users.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement