您好,登錄后才能下訂單哦!
這篇“php共享緩存Yac怎么使用”文章的知識(shí)點(diǎn)大部分人都不太理解,所以小編給大家總結(jié)了以下內(nèi)容,內(nèi)容詳細(xì),步驟清晰,具有一定的借鑒價(jià)值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“php共享緩存Yac怎么使用”文章吧。
yac 緩存
Yac 是用于 PHP 的共享和無鎖內(nèi)存用戶數(shù)據(jù)緩存。它可以用來替換 APC 或本地 memcached。
要求
PHP 7 +
Install
$/path/to/phpize
$./configure --with-php-config=/path/to/php-config
$make && make install
Note
Yac 是無鎖緩存,您應(yīng)該盡量避免或減少多個(gè)進(jìn)程設(shè)置一個(gè)相同鍵的概率
Yac 使用部分 crc,您最好重新排列緩存內(nèi)容,將最重要 (可變) 的字節(jié)放在頭部或尾部
Restrictions
緩存 key 不能大于 48 (YAC_MAX_KEY_LEN) bytes
緩存內(nèi)容不能大于 64M (YAC_MAX_VALUE_RAW_LEN) bytes
壓縮后的緩存值不能大于 1M 1M (YAC_MAX_VALUE_COMPRESSED_LEN) bytes
ini 配置
yac.enable = 1
yac.keys_memory_size = 4M ; 4M can get 30K key slots, 32M can get 100K key slots
yac.values_memory_size = 64M
yac.compress_threshold = -1
yac.enable_cli = 0 ; 是否使用cli啟用yac,默認(rèn)為0
yac.serializer = php ; yac2.2.0以來,yac使用的特定seralizer json(-- enable-json) 、msgpack(-- enable-msgpack) 或igbinary(-- enable-igbinary)
常量
YAC_VERSION
YAC_MAX_KEY_LEN = 48 ; if your key is longer than this, maybe you can use md5 result as the key
YAC_MAX_VALUE_RAW_LEN = 64M
YAC_MAX_VALUE_COMPRESSED_LEN = 1M
YAC_SERIALIZER_PHP = 0 ; since yac-2.2.0
YAC_SERIALIZER_JSON = 1 ; since yac-2.2.0
YAC_SERIALIZER_MSGPACK = 2 ; since yac-2.2.0
YAC_SERIALIZER_IGBINARY = 3 ; since yac-2.2.0
YAC_SERIALIZER ; serializer according to yac.serializer, default is YAC_SERIALIZER_PHP
注意 cli 下會(huì)出現(xiàn)的問題
如果 cli情況下 一定ini配置開啟cli-enable
<?php
use Doraemon\pockets\datebase\ShareCache;
//實(shí)例化緩存封裝類
$cache = new ShareCache('test');
//設(shè)置緩存
$cache->set([1,2,3,5,6]);
//獲取緩存
$a = $cache->get();
//備注 1.由于yac的緩存是共享的,所以在多個(gè)項(xiàng)目中使用時(shí),需要注意key的唯一性,否則會(huì)出現(xiàn)緩存覆蓋的情況
//備注 2.由于cli在執(zhí)行后會(huì)自動(dòng)退出,所以在cli中使用時(shí),需要注意緩存的有效期,當(dāng)再次執(zhí)行時(shí)候換存是拿不到的
//例如
//例
//step 1
<?php
use Doraemon\pockets\datebase\ShareCache;
$cache = new ShareCache('test');
//設(shè)置緩存
$cache->set([1,2,3,5,6]);
//php step1.php //執(zhí)行后會(huì)自動(dòng)退出,緩存失效
<?php
use Doraemon\pockets\datebase\ShareCache;
//step 2
$cache = new ShareCache('test');
//設(shè)置緩存
$arr = $cache->get();
var_dump($arr);// 空
//php step2.php //執(zhí)行事后上一個(gè)進(jìn)程已經(jīng)退出,所以緩存失效
方法
Yac::__construct
Yac::__construct([string $prefix = ""])
Yac 的構(gòu)造函數(shù),您可以指定一個(gè)前綴,該前綴將用于在執(zhí)行設(shè)置 / 獲取 / 刪除時(shí)預(yù)先添加到任何鍵
<?php
$yac = new Yac("myproduct_");
?>
Yac::set
Yac::set($key, $value[, $ttl = 0])
Yac::set(array $kvs[, $ttl = 0])
將一個(gè)值存儲(chǔ)到 Yac 緩存中,鍵是緩存唯一的,因此使用相同的鍵存儲(chǔ)第二個(gè)值將覆蓋原始值。
成功時(shí)返回 true,錯(cuò)誤時(shí)返回 false (如無內(nèi)存,無法獲得 cas write right)
<?php
$yac = new Yac();
$yac->set("foo", "bar");
$yac->set(
array(
"dummy" => "foo",
"dummy2" => "foo",
)
);
?>
Note:
如 Yac 2.1,如果 cas 競(jìng)爭(zhēng)失敗,可能會(huì)失敗,您可能需要執(zhí)行以下操作:
while (!($yac->set("important", "value")));
Yac::get
Yac::get(array|string $key[, &$cas = NULL])
從緩存中獲取存儲(chǔ)變量。如果一個(gè)數(shù)組被傳遞,那么每個(gè)元素都被獲取并返回。成功時(shí)返回值,錯(cuò)誤時(shí)返回 false
<?php
$yac = new Yac();
$yac->set("foo", "bar");
$yac->set(
array(
"dummy" => "foo",
"dummy2" => "foo",
)
);
$yac->get("dummy");
$yac->get(array("dummy", "dummy2"));
?>
Yac::delete
Yac::delete(array|string $keys[, $delay=0])
從緩存中刪除存儲(chǔ)的變量。如果指定了延遲,則該值將在 $delay 秒后刪除。
Yac::flush
Yac::flush()
立即使所有現(xiàn)有項(xiàng)目無效。它實(shí)際上并沒有釋放任何資源,它只將所有項(xiàng)目標(biāo)記為無效。
Yac::info
Yac::info(void)
獲取緩存信息
<?php
....
var_dump($yac->info());
/* will return an array like:
array(11) {
["memory_size"]=> int(541065216)
["slots_memory_size"]=> int(4194304)
["values_memory_size"]=> int(536870912)
["segment_size"]=> int(4194304)
["segment_num"]=> int(128)
["miss"]=> int(0)
["hits"]=> int(955)
["fails"]=> int(0)
["kicks"]=> int(0)
["slots_size"]=> int(32768)
["slots_used"]=> int(955)
}
*/
<?php
namespace Test\Cache
use Yac;
use RuntimeException;
/**
* 共享緩存類
* Date: 2023/2/22
* Time: 16:13
* docs:
*/
class ShareCache
{
public bool $isEnable = true;
public string $key = '';
/**
*
* 共享內(nèi)存塊實(shí)例化。
*/
public function __construct($key)
{
if (!extension_loaded("yac")) {
$this->isEnable = false;
throw new RuntimeException('yac 擴(kuò)展不存在!');
}
if (!$key) {
throw new RuntimeException('key 不能為空!');
}
$this->key = md5($key);
}
/**
*
* 獲取共享內(nèi)存塊的值。
*/
public function get()
{
if ($this->isEnable) {
return (new Yac('db_'))->get($this->key);
}
throw new RuntimeException('yac is not enable ,skip getCache');
}
/**
*
* 設(shè)置共享內(nèi)存塊的值。
*/
public function set($var): bool
{
if ($this->isEnable) {
return (new Yac('db_'))->set($this->key, $var, 3600);
}
throw new RuntimeException('yac is not enable ,skip setCache');
}
/**
*
* 刪除共享內(nèi)存塊的值。
*/
public function del(): bool
{
if ($this->isEnable) {
return (new Yac('db_'))->delete($this->key);
}
throw new RuntimeException('yac is not enable ,skip delCache');
}
/**
*
* 獲取共享內(nèi)存塊的信息。
*/
public function info(): array
{
if ($this->isEnable) {
return (new Yac('db_'))->info();
}
throw new RuntimeException('yac is not enable ,skip info');
}
/**
*
* 清空共享內(nèi)存塊的值。
*/
public function flush(): bool
{
if ($this->isEnable) {
return (new Yac)->flush();
}
throw new RuntimeException('yac is not enable ,skip flush');
}
}
以上就是關(guān)于“php共享緩存Yac怎么使用”這篇文章的內(nèi)容,相信大家都有了一定的了解,希望小編分享的內(nèi)容對(duì)大家有幫助,若想了解更多相關(guān)的知識(shí)內(nèi)容,請(qǐng)關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。