[web2py] Basic usage statistics

2015-06-11 Thread Leonel Câmara
Minor implementation details aside, has anyone came up with a better way to do this? http://www.web2pyslices.com/slice/show/1618/basic-usage-statistics-log-what-your-users-do Particularly, in terms of not hitting the database so much. I'm thinking of making my own system but I may as well ask

Re: [web2py] Basic usage statistics

2015-06-11 Thread Richard Vézina
You may consider, log in memory and write once you have an hundred records with scheduler... This could be a great improve and a better log system on that matter... So far, with more then an hundred user, it never been an issue... Richard On Thu, Jun 11, 2015 at 12:55 PM, Leonel Câmara

Re: [web2py] Basic usage statistics

2015-06-11 Thread Richard Vézina
I am not sure though that this is possible, I mean, is there a way to db.table.insert() without db.commit() even if other change are commited... Or say differently, is possible to specifically commit db operation?? You may also just remove the db.commit() and insert will be commited the next time

Re: [web2py] Basic usage statistics

2015-06-11 Thread Richard Vézina
Also Leonel, if you have an app that really requires more then that (I mean not an in house intranet app) you may consider Piwik : http://piwik.org/ Richard On Thu, Jun 11, 2015 at 1:09 PM, Richard Vézina ml.richard.vez...@gmail.com wrote: I am not sure though that this is possible, I mean,