freebsd-ports/databases/flare/files/pkg-message.in
Norikatsu Shigemura 4bfc868fa3 Add flare 1.0.9, is distributed, and persistent key-value storage
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
2010-05-30 04:41:50 +00:00

31 lines
970 B
Text

===============================================================================
* SETUP NOTICE * SETUP NOTICE * SETUP NOTICE *
o Add following lines to /etc/syslog.conf before !* line.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
!flarei
*.* /var/log/flarei.log
!flared
*.* /var/log/flared.log
!*
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
o Set flarei_enable="YES" and/or flared_enable="YES" to /etc/rc.conf.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
flarei_enable="YES"
flared_enable="YES"
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
o See also configuration files:
%%PREFIX%%/etc/flarei.conf
%%PREFIX%%/etc/flared.conf
o And see also setup tutorial:
http://labs.gree.jp/Top/OpenSource/Flare/Document/Tutorial-en.html
===============================================================================