mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-08 02:15:08 +00:00
4bfc868fa3
compatible / memcached, and has more features(as follows): * persistent storage (you can use flare as persistent memcached) * pluggable storage (currently only Tokyo Cabinet is available, though:) * data replication (synchronous or asynchronous) * data partitioning (automatically partitioned according to # of master servers (clients do not have to care about it)) * dynamic reconstruction, and partitioning (you can dynamically (I mean, without any service interruption) add slave servers and partition master servers) * node monitoring and failover (if any server is down, the server is automatically isolated from active servers and another slave server is promoted to master server) * request proxy (you can always get same result regardless of servers you connect to. so you can think flare servers as one big key-value storage) * over 256 bytes keys, and over 1M bytes values are available WWW: http://labs.gree.jp/Top/OpenSource/Flare-en.html
11 lines
474 B
Plaintext
11 lines
474 B
Plaintext
bin/flared
|
|
bin/flarei
|
|
@unexec if cmp -s %D/etc/flared.conf %D/etc/flared.conf-dist; then rm -f %D/etc/flared.conf; fi
|
|
etc/flared.conf-dist
|
|
@exec [ ! -f %B/flared.conf ] && cp %B/%f %B/flared.conf
|
|
@unexec if cmp -s %D/etc/flarei.conf %D/etc/flarei.conf-dist; then rm -f %D/etc/flarei.conf; fi
|
|
etc/flarei.conf-dist
|
|
@exec [ ! -f %B/flarei.conf ] && cp %B/%f %B/flarei.conf
|
|
@unexec rmdir /var/db/flare 2>/dev/null || true
|
|
@exec install -d -o root -g wheel -m 0750 /var/db/flare
|