Dutch PHP Conference 2025 - Call For Papers

Yac::add

(PECL yac >= 1.0.0)

Yac::addStore into cache

Опис

public Yac::add(string $keys, mixed $value, int $ttl = 0): bool
public Yac::add(array $key_vals): bool

Added a item into cache.

Параметри

keys

string key

value

mixed value, All php value type could be stored except resource

ttl

expire time

Значення, що повертаються

bool, true on success, false on failure

Зауваження:

Yac::add() may fail if cas lock could not obtain, so, if you need the value to be stored properly, you may write codes like:

Приклад #1 Make sure the item is stored

while(!$yac->set("key", "vale));

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top