MemcacheQ

MemcacheQ is a memcachedb variant that provides a simple message quque service.

Getting Started

Commands:
Only two commands are used to operate the quque: Examples:
Assuming you are using PHP memcache,
<?php
/* connect to memcached server */
$memcache_obj = memcache_connect('memcacheq_host', 21201);

/* append a message to quque */
memcache_set($memcache_obj, 'q', 'message body here', 0, 0);

/* pop a message from quque */
memcache_get($memcache_obj, 'q');

memcache_close($memcache_obj);
?>

Documentation

All basic documents are coming along with distribution, please check 'README', 'INSTALL' in the source package.

Download

The source code is licensed under a BSD-like License.

Latest release: memcacheq-0.0.1.tar.gz [ChangeLog]

Subversion repository

Please visit: http://code.google.com/p/memcacheq/source/checkout

Mailing list

Memcachedb mailing list now hosts on Google Group: http://groups.google.com/group/memcachedb Please report your bugs and issues to the Maillist.
Last updated by stvchu: 03/15/2008