| Patrick Galbraith ( @ 2008-05-30 09:36:00 |
| Current location: | Sharon, NH |
| Current mood: | accomplished |
| Current music: | Depeche Mode |
| Entry tags: | libmemcached, memcached, mysql, udf |
Memcached UDFs for MySQL version 0.5 Released
I'm pleased to announce the release of Memcached UDFs for MySQL. This release contains the ability to now pass expiration values. For instance, you can:
select memc_set('keyabc', 'somevalue')
or
select memc_set('keyabc', 'I die in 10 seconds', 10);
The functions that now have this ability are:
memc_set()
memc_set_by_key()
memc_append()
memc_append_by_key()
memc_prepend()
memc_prepend_by_key()
memc_add()
memc_add_by_key()
memc_replace()
memc_replace_by_key()
You can download the latest archive from http://patg.net/downloads/memcached_func
Also, mercurial repository at http://hg.tangent.org/memcached_function
Please enjoy using these functions. I enjoy developing them! Thank you for using them.