Overview
memcachefs is FUSE
based filesystem which mount the memcache server. It allows to
view cache data of
memcached as like
regular files.
Dependencies
- FUSE 2.5 or later
- libmemcache 1.4 or later
Download
This program can be distributed under the terms of the GNU
GPL. See the file COPYING.
Latest Source:
memcachefs-0.5.tar.gz
Debian Package:
memcachefs_0.5-1_i386.deb
Build
% ./configure
% make
Usage
- mount the memcahed
% mkdir mnt
% ./memcachefs localhost:11211 ./mnt
- set a cache data
% echo "value" > ./mnt/key
- get a cache data
% cat ./mnt/key
value
- list keys
% ls -l ./mnt
total 0
-rw-rw-rw- 1 hamano hamano 6 Jan 1 1970 key
- delete a cache data
% rm ./mnt/key
- rename cache data
% mv ./mnt/key ./mnt/key.bak
- unmount
% fusermount -u ./mnt
Author
Tsukasa Hamano <code at cuspy dot org>
Links