Simple example of calling KyotoTycoon in php, calling kyototycoon_PHP tutorial in php

WBOY
Release: 2016-07-13 09:58:14
Original
839 people have browsed it

A simple example of php calling KyotoTycoon, php calling kyototycoon

This article describes the method of php calling KyotoTycoon. Share it with everyone for your reference. 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 that provides a plug-in mechanism that can mount almost all database storage devices.

Here is a simple application example:

<&#63;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";
Copy after login

I hope this article will be helpful to everyone’s PHP programming design.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/978382.htmlTechArticleA simple example of php calling KyotoTycoon, php calling kyototycoon This example describes how php calls KyotoTycoon. Share it with everyone for your reference. The details are as follows: Kyoto Tycoon (K for short...
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template