Disable debug statements

2008-09-09 Thread vp
Hi, I am trying to use memecached in my application . but it gives these debug statements in the tomcat log DEBUG MaintThread com.danga.memcached.SockIOPool Size of busy pool for host (172.16.1.16:11211) = 0 in a loop Can any body help me disable these ??

Re: Test code coverage

2008-09-09 Thread dormando
The test coverage is exceptionally low. Is this only accounting the coverage of the last executed test? On Tue, 9 Sep 2008, Victor Kirkebo wrote: Hi, I've attached a new version of this patch that excludes printing of coverage on non-source-tree files. The printout looks like this: with

Re: save/restore memcache db?

2008-09-09 Thread PlumbersStock.com
That sounds more complex than simply dumping a copy of what's in memory to disk and restoring it five minutes later when the system is restarted. If I understand correctly, memcached doesn't offer replication so I'd have to somehow make it do so myself - right? On Sep 9, 7:24 pm, Joseph Engo

Re: save/restore memcache db?

2008-09-09 Thread Josef Finsel
FYI... Brad expounds on why he didn't implement a save to disk function here (http://lists.danga.com/pipermail/memcached/2003-November/000368.html) On Tue, Sep 9, 2008 at 9:52 PM, Josef Finsel [EMAIL PROTECTED] wrote: That's correct. memcached doesn't offer a way to dump itself to disk,

Re: save/restore memcache db?

2008-09-09 Thread Joseph Engo
I played around with a version of memcached that supported replication and it didn't work very well. Normal get and set were ok, but increments / decrement got all messed up during fail overs. Just curious, how much data are you storing in your memcache ? On Sep 9, 2008, at 6:38 PM,

Re: Disable debug statements

2008-09-09 Thread vp
yeah , i do have log4j and the level is set to debug in properties file . i didnt want to change the level in log4j properties file as i want to see the debug stmnts for other modules of the app. Is it posible to disable only the debug staments for memcache On Sep 9, 3:47 pm, Ray Krueger