--
You received this message because you are subscribed to the Google Groups "Redis DB" group.
To post to this group, send email to redi...@googlegroups.com.
To unsubscribe from this group, send email to redis-db+u...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/redis-db?hl=en.
Steve
--
You received this message because you are subscribed to the Google Groups "Redis DB" group.
To post to this group, send email to redi...@googlegroups.com.
To unsubscribe from this group, send email to redis-db+u...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/redis-db?hl=en.
most modern filesystems are O(1) on path->data operations. it's the
wildcard-globbing process that kills huge flat directories
--
Javier
Additionally I've implemented a simple filesystem-snapshot tool, which
does nothing more than copy all keys which are relating to the
filesystem with a new prefix. By default the filesystem is mounted at
/mnt/redis and all keys have a prefix of "skx", but a snapshot may be
made with a different prefix and that can be mounted too:
redisfs-snapshot --prefix=copy
redisfs --mount /mnt/copy --prefix=copy
Because there is no "copy" primitive for keys & sets I had to use the
"keys" function which is suboptimal, but robust & simple to implement.
Find redisfs at http://www.steve.org.uk/Software/redisfs/
Steve
--