Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 17153 программиста и 1775 роботов. Сейчас ищут 1968 программистов ...
The TokyoTyrantTable class
Вернуться к: tokyo_tyrant
(PECL tokyo_tyrant >= 0.1.0)
Введение
Provides an API to the table databases. A table database can be create using the following command: ttserver -port 1979 /tmp/tt_table.tct. In Tokyo Tyrant the table API is a schemaless database which can store arbitrary amount of key-value pairs under a single primary key.
Обзор классов
TokyoTyrantTable
extends
TokyoTyrant
{
/* Методы */
/* Наследуемые методы */
public TokyoTyrant TokyoTyrant::connect
( string
$host
[, int $port
= TokyoTyrant::RDBDEF_PORT
[, array $options
]] )
public TokyoTyrant::__construct
([ string
$host
[, int $port
= TokyoTyrant::RDBDEF_PORT
[, array $options
]]] )
public mixed TokyoTyrant::restore
( string
$log_dir
, int $timestamp
[, bool $check_consistency
= true
] )
public mixed TokyoTyrant::setMaster
( string
}$host
, int $port
, int $timestamp
[, bool $check_consistency
= true
] )Содержание
- TokyoTyrantTable::add — Adds a record
- TokyoTyrantTable::genUid — Generate unique id
- TokyoTyrantTable::get — Get a row
- TokyoTyrantTable::getIterator — Get an iterator
- TokyoTyrantTable::getQuery — Get a query object
- TokyoTyrantTable::out — Remove records
- TokyoTyrantTable::put — Store a row
- TokyoTyrantTable::putCat — Concatenates to a row
- TokyoTyrantTable::putKeep — Put a new record
- TokyoTyrantTable::putNr — Puts value
- TokyoTyrantTable::putShl — Concatenates to a record
- TokyoTyrantTable::setIndex — Sets index
Вернуться к: tokyo_tyrant