update page now

The APCUIterator class

(PECL apcu >= 5.0.0)

Giriş

The APCUIterator class makes it easier to iterate over large APCu caches. This is helpful as it allows iterating over large caches in steps, while grabbing a defined number of entries per lock instance, so it frees the cache locks for other activities rather than hold up the entire cache to grab 100 (the default) entries. Also, using regular expression matching is more efficient as it's been moved to the C level.

Sınıf Sözdizimi

class APCUIterator implements Iterator {
/* Yöntemler */
public function __construct(
    array|string|null $search = null,
    int $format = APC_ITER_ALL,
    int $chunk_size = 100,
    int $list = APC_LIST_ACTIVE
)
public function current(): mixed
public function getTotalCount(): int
public function getTotalHits(): int
public function getTotalSize(): int
public function key(): string
public function next(): bool
public function rewind(): void
public function valid(): bool
}

İçindekiler

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top
HTTPS · www.php.net
← Home