This article mainly introduces a simple example of php calling KyotoTycoon, involving the simple use method of php calling KyotoTycoon, which has certain reference value. Friends in need can refer to it
This article describes the example of php calling KyotoTycoon method. The details are as follows:
Kyoto Tycoon (KT for short) is one of the series of works by Mikio Hirabayashi, the author of Tokyo Tyrant. KT is a database network layer service. It provides a plug-in mechanism that can mount almost all database storage equipment.
A simple application example is provided here:
<?php require_once 'Net/KyotoTycoon.php'; use Net\KyotoTycoon; $cacheManager = new KyotoTycoon(array( 'host' => 'localhost', 'port' => 1978 )); $cacheManager->set('foo', 'bar'); $value = $cacheManager->get('foo'); echo $value . "\n";
Summary: The above is the entire content of this article, I hope it will be helpful to everyone's learning.
Related recommendations:
PHP form data verification class
PHP implements Chinese character verification code
PHP sends post, get request and operates cookies based on curl
php recursive traversal to achieve unlimited classification
PHP Read configuration file class instance
The above is the detailed content of How to use php to call KyotoTycoon. For more information, please follow other related articles on the PHP Chinese website!