BaseCache
in package
implements
CacheInterface
Interfaces, Classes and Traits
- CacheInterface
- PSR Interface CacheInterface
Table of Contents
- add() : bool
- Önbelleğe yeni bir değer ekler, anahtar varsa false döner
- clear() : bool
- Tüm önbelleği temizler
- decrement() : int|false
- delete() : bool
- Önbellekten ilgili anahtara ait değeri siler
- deleteMultiple() : bool
- Çoklu önbellekten veri silme
- get() : mixed
- Önbellekten ilgili anahtara ait değeri döndürür
- getMultiple() : array<string|int, mixed>
- Çoklu önbellek listesi
- getSet() : mixed
- Önbellekte veri varsa getirir yoksa oluşturuğ default değeri döndürür
- has() : bool
- Önbellekte anahtarın olup olmadığını kontrol eder
- increment() : int|false
- set() : bool
- Önbelleğe yeni bir değer ekler, anahtar varsa üzerine yazar
- setMultiple() : bool
- Çoklu önbellekleme
- expires() : int
- ttl() : int
Methods
add()
Önbelleğe yeni bir değer ekler, anahtar varsa false döner
public
abstract add(string $key, mixed $value[, mixed $ttl = null ]) : bool
Parameters
- $key : string
- $value : mixed
- $ttl : mixed = null
Tags
Return values
bool —clear()
Tüm önbelleği temizler
public
abstract clear() : bool
Tags
Return values
bool —decrement()
public
abstract decrement(string $key[, mixed $value = 1 ]) : int|false
Parameters
- $key : string
- $value : mixed = 1
Tags
Return values
int|false —delete()
Önbellekten ilgili anahtara ait değeri siler
public
abstract delete(string $key) : bool
Parameters
- $key : string
Tags
Return values
bool —deleteMultiple()
Çoklu önbellekten veri silme
public
abstract deleteMultiple(array<string|int, mixed> $keys) : bool
Parameters
- $keys : array<string|int, mixed>
Tags
Return values
bool —get()
Önbellekten ilgili anahtara ait değeri döndürür
public
abstract get(string $key[, mixed $default = null ]) : mixed
Parameters
- $key : string
- $default : mixed = null
Tags
Return values
mixed —getMultiple()
Çoklu önbellek listesi
public
abstract getMultiple(array<string|int, mixed> $keys) : array<string|int, mixed>
Parameters
- $keys : array<string|int, mixed>
-
anahtar değer ilişkili liste
Tags
Return values
array<string|int, mixed> —A list of key
getSet()
Önbellekte veri varsa getirir yoksa oluşturuğ default değeri döndürür
public
abstract getSet(string $key[, mixed $ttl = null ][, mixed $default = null ]) : mixed
Parameters
- $key : string
- $ttl : mixed = null
- $default : mixed = null
Tags
Return values
mixed —has()
Önbellekte anahtarın olup olmadığını kontrol eder
public
abstract has(string $key) : bool
Parameters
- $key : string
Tags
Return values
bool —increment()
public
abstract increment(string $key[, mixed $value = 1 ]) : int|false
Parameters
- $key : string
- $value : mixed = 1
Tags
Return values
int|false —set()
Önbelleğe yeni bir değer ekler, anahtar varsa üzerine yazar
public
abstract set(string $key, mixed $value[, mixed $ttl = null ]) : bool
Parameters
- $key : string
- $value : mixed
- $ttl : mixed = null
Tags
Return values
bool —setMultiple()
Çoklu önbellekleme
public
abstract setMultiple(array<string|int, mixed> $items[, mixed $ttl = null ]) : bool
Parameters
- $items : array<string|int, mixed>
-
anahtar değer ilişkili liste
- $ttl : mixed = null
-
geçerlilik süresi
Tags
Return values
bool —expires()
protected
expires( $ttl) : int
Parameters
Tags
Return values
int —ttl()
protected
ttl([null|int|DateInterval $ttl = null ]) : int
Parameters
- $ttl : null|int|DateInterval = null