class FileStorage implements IStorage

Cache file storage.

Constants

internal META_HEADER_LEN

internal META_TIME

internal META_SERIALIZED

internal META_EXPIRE

internal META_DELTA

internal META_ITEMS

internal META_CALLBACKS

FILE

additional cache structure

HANDLE

additional cache structure

Properties

static float $gcProbability
static bool $useDirectories

Methods

__construct($dir, IJournal $journal = null)

No description

mixed
read(string $key)

Read from cache.

void
lock(string $key)

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

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

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.

array|null
readMetaAndLock(string $file, int $lock)

Reads cache data from disk.

mixed
readData(array $meta)

Reads cache data from disk and closes cache file handle.

string
getCacheFile(string $key)

Returns file name.

Details

at line 65
__construct($dir, IJournal $journal = null)

No description

Parameters

$dir
IJournal $journal

at line 81
mixed read(string $key)

Read from cache.

Parameters

string $key

Return Value

mixed

at line 132
void lock(string $key)

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

Parameters

string $key

Return Value

void

at line 146
void write(string $key, mixed $data, array $dp)

Writes item into the cache.

Parameters

string $key
mixed $data
array $dp

Return Value

void

at line 225
void remove(string $key)

Removes item from the cache.

Parameters

string $key

Return Value

void

at line 232
void clean(array $conditions)

Removes items from the cache by conditions.

Parameters

array $conditions

Return Value

void

at line 300
protected array|null readMetaAndLock(string $file, int $lock)

Reads cache data from disk.

Parameters

string $file
int $lock

Return Value

array|null

at line 330
protected mixed readData(array $meta)

Reads cache data from disk and closes cache file handle.

Parameters

array $meta

Return Value

mixed

at line 349
protected string getCacheFile(string $key)

Returns file name.

Parameters

string $key

Return Value

string

Traits

SmartObject