GLF
GLF

Reputation: 75

DB design for a web app

I'm doing a webapp that uses REST api to retrieve information from a ticketing service, builds its own schema and presents the data as statistics.

Every time a user connects to my webapp I need to populate four tables and every time he logs out I need to delete the content.

Ideally I need a db for each user.

How should I do this?

Upvotes: 1

Views: 119

Answers (1)

emt14
emt14

Reputation: 4896

check the multi-db module and play support for multiple db.

Upvotes: 2

Related Questions