baiheqiang / memcached-session-manager

Automatically exported from code.google.com/p/memcached-session-manager
0 stars 0 forks source link

Calculate statistics for serialization time / backup time / load time / skips etc #43

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
It would be great to get some stats on
- number of requests with sessions
- number of requests with sessions without access -> skipped backup
- number of requests with sessions without session modification -> skipped 
backup
- number of requests with sessions with backup
- number of sessions loaded from memcached

for each of the following there should be min, avg, max:
- serialization time
- time it took to store it in memcached (the duration of 
MemcachedClient.set)
- load time (sessions loaded from memcached)

These stats should be available via jmx

Original issue reported on code.google.com by martin.grotzke on 27 Feb 2010 at 2:16

GoogleCodeExporter commented 8 years ago
Also session size distribution, as a hint on memcached tuning

Original comment by martin.grotzke on 13 Mar 2010 at 10:17

GoogleCodeExporter commented 8 years ago
Finished implementing stats, will be release with 1.2

Docs can be found here: http://code.google.com/p/memcached-session-
manager/wiki/JMXStatistics

Original comment by martin.grotzke on 15 Mar 2010 at 5:02