Skip to content

Commit

Permalink
Checking in changes prior to tagging of version 1.26. Changelog diff is:
Browse files Browse the repository at this point in the history
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,


git-svn-id: http://code.sixapart.com/svn/memcached/trunk/api/perl@811 b0b603af-a30f-0410-a34e-baf09ae79d0b
  • Loading branch information
bradfitz committed May 5, 2009
1 parent 4590866 commit 641d6a7
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -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,
Expand Down
8 changes: 5 additions & 3 deletions lib/Cache/Memcached.pm
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ use constant F_COMPRESS => 2;
use constant COMPRESS_SAVINGS => 0.20; # percent

use vars qw($VERSION $HAVE_ZLIB $FLAG_NOSIGNAL);
$VERSION = "1.25";
$VERSION = "1.26";

BEGIN {
$HAVE_ZLIB = eval "use Compress::Zlib (); 1;";
Expand Down Expand Up @@ -819,8 +819,10 @@ sub stats {
# I don't much care what the default is, it should just
# be something reasonable. Obviously "reset" should not
# be on the list :) but other types that might go in here
# include maps, cachedump, slabs, or items.
$types = [ qw( misc malloc sizes self ) ];
# include maps, cachedump, slabs, or items. Note that
# this does NOT include 'sizes' anymore, as that can freeze
# bug servers for a couple seconds.
$types = [ qw( misc malloc self ) ];
} else {
$types = [ $types ];
}
Expand Down

0 comments on commit 641d6a7

Please sign in to comment.