forked from twitter/twemproxy
-
Notifications
You must be signed in to change notification settings - Fork 0
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
Manju Rajashekhar
committed
Dec 3, 2012
1 parent
013d902
commit ef60395
Showing
2 changed files
with
15 additions
and
2 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,16 @@ | ||
2012-12-03 Manju Rajashekhar <[email protected]> | ||
|
||
* twemproxy: version 0.2.0 release | ||
add -D or --describe-stats command-line argument to print stats description | ||
redis support in twemproxy | ||
setup pre/post splitcopy and pre/post coalesce handlers in msg struct | ||
memcache pre_splitcopy, post_splitcopy, pre_coalesce and post_coalesce handlers | ||
every fragment of a msg vector keeps track of the first/last fragment, number of fragments and fragment owner | ||
set up msg parser handler for memcache connections | ||
refactor parsing code and create header file nc_proto.h | ||
stats_listen should use st->addr as the listening address string | ||
delete stats tracking memcache requests and responses; stats module no longer tracks protocol related stats | ||
|
||
2012-10-27 Manju Rajashekhar <[email protected]> | ||
|
||
* twemproxy: version 0.1.20 release | ||
|
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([NC_MAJOR], 0) | ||
m4_define([NC_MINOR], 1) | ||
m4_define([NC_PATCH], 20) | ||
m4_define([NC_MINOR], 2) | ||
m4_define([NC_PATCH], 0) | ||
m4_define([NC_BUGS], [[email protected]]) | ||
|
||
# Initialize autoconf | ||
|