This repository was archived by the owner on Nov 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 153
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Yao Yue
committed
Dec 12, 2012
1 parent
d5d8b76
commit 23b6c0e
Showing
13 changed files
with
136 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,13 @@ | ||
2012-12-11 Cache Team <[email protected]> | ||
* twemcache: version 2.5.3 release | ||
* Fix: insufficient item length causing segfault | ||
* Fix: get/delete race causing segfault | ||
* Fix: inconsistency in prepend/append replies under concurrency | ||
* Fix: update cas for in-place prepend/append | ||
* Fix: strtoull function taking length as a parameter to avoid overrun | ||
* Debug: memory-scrubbing enabled in full debug build | ||
* Misc: soarpenguin's several from https://github.com/twitter/twemcache/pull/15 | ||
|
||
2012-09-24 Cache Team <[email protected]> | ||
* twemcache: version 2.5.2 release | ||
* Feature: command line option for klog sampling rate, default is now 100 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# Define the package version numbers and the bug reporting address | ||
m4_define([MC_MAJOR], 2) | ||
m4_define([MC_MINOR], 5) | ||
m4_define([MC_PATCH], 2) | ||
m4_define([MC_PATCH], 3) | ||
m4_define([MC_BUGS], [[email protected]]) | ||
|
||
# Initialize autoconf | ||
|
@@ -101,6 +101,7 @@ AS_CASE([x$enable_debug], | |
[xfull], [AC_DEFINE([HAVE_ASSERT_PANIC], [1], | ||
[Define to 1 if panic on an assert is enabled]) | ||
AC_DEFINE([HAVE_DEBUG_LOG], [1], [Define to 1 if debug log is enabled]) | ||
AC_DEFINE([HAVE_MEM_SCRUB], [1], [Define to 1 if memory scrubbing is enabled]) | ||
], | ||
[xyes], [AC_DEFINE([HAVE_ASSERT_LOG], [1], | ||
[Define to 1 if log on an assert is enabled]) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.