-
Notifications
You must be signed in to change notification settings - Fork 33
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
Showing
7 changed files
with
123 additions
and
82 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,7 +1,11 @@ | ||
2008-11-25 Steve Chu <[email protected]> | ||
* version 0.1.1 is released. | ||
|
||
2008-11-25 Steve Chu <[email protected]> | ||
* Bugfix: 'stats queue' did not return right queue name | ||
* All replication code has been discarded and removed. Original replication | ||
code is buggy, also nobody want to use replication on a message queue system. | ||
* more graceful exit | ||
|
||
2008-09-19 Steve Chu <[email protected]> | ||
* version 0.1.0 is released. | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#! /bin/sh | ||
# Guess values for system-dependent variables and create Makefiles. | ||
# Generated by GNU Autoconf 2.61 for memcacheq 0.1.0. | ||
# Generated by GNU Autoconf 2.61 for memcacheq 0.1.1. | ||
# | ||
# Report bugs to <[email protected]>. | ||
# | ||
|
@@ -574,8 +574,8 @@ SHELL=${CONFIG_SHELL-/bin/sh} | |
# Identity of this package. | ||
PACKAGE_NAME='memcacheq' | ||
PACKAGE_TARNAME='memcacheq' | ||
PACKAGE_VERSION='0.1.0' | ||
PACKAGE_STRING='memcacheq 0.1.0' | ||
PACKAGE_VERSION='0.1.1' | ||
PACKAGE_STRING='memcacheq 0.1.1' | ||
PACKAGE_BUGREPORT='[email protected]' | ||
|
||
# Factoring default headers for most tests. | ||
|
@@ -1206,7 +1206,7 @@ if test "$ac_init_help" = "long"; then | |
# Omit some internal or obsolete options to make the list less imposing. | ||
# This message is too long to be a string in the A/UX 3.1 sh. | ||
cat <<_ACEOF | ||
\`configure' configures memcacheq 0.1.0 to adapt to many kinds of systems. | ||
\`configure' configures memcacheq 0.1.1 to adapt to many kinds of systems. | ||
Usage: $0 [OPTION]... [VAR=VALUE]... | ||
|
@@ -1272,7 +1272,7 @@ fi | |
|
||
if test -n "$ac_init_help"; then | ||
case $ac_init_help in | ||
short | recursive ) echo "Configuration of memcacheq 0.1.0:";; | ||
short | recursive ) echo "Configuration of memcacheq 0.1.1:";; | ||
esac | ||
cat <<\_ACEOF | ||
|
@@ -1363,7 +1363,7 @@ fi | |
test -n "$ac_init_help" && exit $ac_status | ||
if $ac_init_version; then | ||
cat <<\_ACEOF | ||
memcacheq configure 0.1.0 | ||
memcacheq configure 0.1.1 | ||
generated by GNU Autoconf 2.61 | ||
Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, | ||
|
@@ -1377,7 +1377,7 @@ cat >config.log <<_ACEOF | |
This file contains any messages produced by compilers while | ||
running configure, to aid debugging if configure makes a mistake. | ||
It was created by memcacheq $as_me 0.1.0, which was | ||
It was created by memcacheq $as_me 0.1.1, which was | ||
generated by GNU Autoconf 2.61. Invocation command line was | ||
$ $0 $@ | ||
|
@@ -2067,7 +2067,7 @@ fi | |
# Define the identity of the package. | ||
PACKAGE='memcacheq' | ||
VERSION='0.1.0' | ||
VERSION='0.1.1' | ||
cat >>confdefs.h <<_ACEOF | ||
|
@@ -5928,7 +5928,7 @@ exec 6>&1 | |
# report actual input values of CONFIG_FILES etc. instead of their | ||
# values after options handling. | ||
ac_log=" | ||
This file was extended by memcacheq $as_me 0.1.0, which was | ||
This file was extended by memcacheq $as_me 0.1.1, which was | ||
generated by GNU Autoconf 2.61. Invocation command line was | ||
CONFIG_FILES = $CONFIG_FILES | ||
|
@@ -5981,7 +5981,7 @@ Report bugs to <[email protected]>." | |
_ACEOF | ||
cat >>$CONFIG_STATUS <<_ACEOF | ||
ac_cs_version="\\ | ||
memcacheq config.status 0.1.0 | ||
memcacheq config.status 0.1.1 | ||
configured by $0, generated by GNU Autoconf 2.61, | ||
with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\" | ||
|
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,5 +1,5 @@ | ||
AC_PREREQ(2.61) | ||
AC_INIT([memcacheq], [0.1.0], [[email protected]]) | ||
AC_INIT([memcacheq], [0.1.1], [[email protected]]) | ||
AM_INIT_AUTOMAKE([-Wall -Werror foreign]) | ||
AC_PROG_CC | ||
AM_PROG_CC_C_O | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?php | ||
$memcache; | ||
$memcache = new Memcache; | ||
$memcache->connect('localhost', 22201) or die ("Could not connect"); | ||
|
||
for ($i=0; $i < 100000; $i++) { | ||
$msg = "aaaaaaaaaaaaaaa"; | ||
while(!$memcache->set('queue_001', $msg, false, 0)){ | ||
$memcache->close(); | ||
$memcache = new Memcache; | ||
$memcache->connect('localhost', 22201) or die ("Could not connect"); | ||
// any logging here? | ||
echo "reconnect...\n"; | ||
} | ||
} | ||
|
||
$memcache->close(); | ||
?> |