Changeset 809
- Timestamp:
- 05/03/09 03:23:23 (7 months ago)
- Location:
- trunk/api/perl
- Files:
-
- 3 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/api/perl/ChangeLog
r805 r809 1 2009-05-02: version 1.25 2 3 * Clear @buck2sock when calling disconnect_all. (Dennis Stosberg, 4 [rt.cpan.org #45560] 5 1 6 * Reconnects to a dead connection shouldn't happen every time when the 2 7 connection has never succeded. Apply the dead timeout to sockets that -
trunk/api/perl/MANIFEST
r577 r809 1 1 ChangeLog 2 MANIFEST 3 MANIFEST.SKIP 4 Makefile.PL 5 README 6 TODO 2 7 lib/Cache/Memcached.pm 3 8 lib/Cache/Memcached/GetParser.pm 4 Makefile.PL5 README6 MANIFEST7 MANIFEST.SKIP8 TODO9 9 t/01_use.t 10 10 t/02_keys.t 11 11 t/03_stats.t 12 META.yml Module meta-data (added by MakeMaker) 12 t/04_noreply.t 13 t/05_reconnect_timeout.t 14 t/100_flush_bug.t -
trunk/api/perl/lib/Cache/Memcached.pm
r805 r809 36 36 37 37 use vars qw($VERSION $HAVE_ZLIB $FLAG_NOSIGNAL); 38 $VERSION = "1.2 4";38 $VERSION = "1.25"; 39 39 40 40 BEGIN { … … 331 331 } 332 332 %cache_sock = (); 333 @buck2sock = (); 333 334 } 334 335
