Add files from parent branch HEAD:
[pkgsrc.git] / databases / p5-tokyotyrant / DESCR
1 This module implements the pure Perl client which connects to the server of
2 Tokyo Tyrant and speaks its original binary protocol.
3
4 Tokyo Tyrant is a package of network interface to the DBM called Tokyo Cabinet.
5 Though the DBM has high performance, you might bother in case that multiple
6 processes share the same database, or remote processes access the database.
7 Thus, Tokyo Tyrant is provided for concurrent and remote connections to Tokyo
8 Cabinet. It is composed of the server process managing a database and its access
9 library for client applications. The server can embed Lua, a lightweight script
10 language so that you can define arbitrary operations of the database.
11
12 The server features high concurrency due to thread-pool modeled implementation
13 and the epoll/kqueue mechanism of the modern Linux/*BSD kernel. The server and
14 its clients communicate with each other by simple binary protocol on TCP/IP.
15 Protocols compatible with memcached and HTTP/1.1 are also supported so that
16 almost all principal platforms and programming languages can use Tokyo Tyrant.
17 High availability and high integrity are also featured due to such mechanisms as
18 hot backup, update logging, and replication.