class SQLiteStorage implements IStorage, IBulkReader

SQLite storage.

Methods

__construct($path)

No description

mixed
read(string $key)

Read from cache.

array
bulkRead(array $keys)

Reads from cache in bulk.

void
lock(string $key)

Prevents item reading and writing. Lock is released by write() or remove().

void
write(string $key, mixed $data, array $dependencies)

Writes item into the cache.

void
remove(string $key)

Removes item from the cache.

void
clean(array $conditions)

Removes items from the cache by conditions.

Details

at line 25
__construct($path)

No description

Parameters

$path

at line 53
mixed read(string $key)

Read from cache.

Parameters

string $key

Return Value

mixed

at line 66
array bulkRead(array $keys)

Reads from cache in bulk.

Parameters

array $keys

Return Value

array

key => value pairs, missing items are omitted

at line 86
void lock(string $key)

Prevents item reading and writing. Lock is released by write() or remove().

Parameters

string $key

Return Value

void

at line 91
void write(string $key, mixed $data, array $dependencies)

Writes item into the cache.

Parameters

string $key
mixed $data
array $dependencies

Return Value

void

at line 112
void remove(string $key)

Removes item from the cache.

Parameters

string $key

Return Value

void

at line 119
void clean(array $conditions)

Removes items from the cache by conditions.

Parameters

array $conditions

Return Value

void

Traits

SmartObject