0
I have an application, in which I need to save at least once on the day, the date and time that user accessed the application/ system. Because we charge at the end of the month for the number of days it used the app/software.
How best to map this table?
A Logacess table with User Id, Date / Time and Ip would not be enough? Hence every time the user logs in, you save this information in the Log Access table.
– mcamara
I’m thinking about the volume of data, because this would have to be done for every day of the year and in the queries I should separate by month.
– Mateus Carvalho
As for data volume I see no problem as you can work with a Nosql database! Even with a relational database, you’d have to have a lot, but a lot of record to start thinking about performance!
– mcamara
You use Webapi to serve your app?
– mcamara
@miltoncamara utilizing a backend service similar to firebase.
– Mateus Carvalho
So rest assured, because these services support a good amount of data, in my case I use Azure Document DB and works very well!
– mcamara
@miltoncamara Thanks!
– Mateus Carvalho