Changeset 811

Show
Ignore:
Timestamp:
05/05/09 01:32:37 (6 months ago)
Author:
bradfitz
Message:

Checking in changes prior to tagging of version 1.26. Changelog diff is:

Index: ChangeLog
===================================================================
--- ChangeLog (revision 809)
+++ ChangeLog (working copy)
@@ -1,3 +1,8 @@
+2009-05-04: version 1.26
+
+ * don't include "stats sizes" by default in the stats method,
+ as that can hang big servers for a few seconds (Brad Fitzpatrick)
+

2009-05-02: version 1.25


  • Clear @buck2sock when calling disconnect_all. (Dennis Stosberg,
Location:
trunk/api/perl
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/api/perl/ChangeLog

    r809 r811  
     12009-05-04: version 1.26 
     2 
     3        * don't include "stats sizes" by default in the stats method, 
     4          as that can hang big servers for a few seconds (Brad Fitzpatrick) 
     5         
    162009-05-02: version 1.25 
    27 
  • trunk/api/perl/lib/Cache/Memcached.pm

    r809 r811  
    3636 
    3737use vars qw($VERSION $HAVE_ZLIB $FLAG_NOSIGNAL); 
    38 $VERSION = "1.25"; 
     38$VERSION = "1.26"; 
    3939 
    4040BEGIN { 
     
    820820            # be something reasonable.  Obviously "reset" should not 
    821821            # be on the list :) but other types that might go in here 
    822             # include maps, cachedump, slabs, or items. 
    823             $types = [ qw( misc malloc sizes self ) ]; 
     822            # include maps, cachedump, slabs, or items.  Note that 
     823            # this does NOT include 'sizes' anymore, as that can freeze 
     824            # bug servers for a couple seconds. 
     825            $types = [ qw( misc malloc self ) ]; 
    824826        } else { 
    825827            $types = [ $types ];