class PdoAdapter extends AbstractAdapter implements PruneableInterface
PdoTrait | |
AbstractTrait | |
LoggerAwareTrait |
protected | $maxIdLength |
array|Traversable | doFetch(array $ids) Fetches several cache items. | from AbstractTrait |
bool | doHave(string $id) Confirms if the cache contains specified cache item. | from AbstractTrait |
bool | doClear(string $namespace) Deletes all items in the pool. | from AbstractTrait |
bool | doDelete(array $ids) Removes multiple items from the pool. | from AbstractTrait |
array|bool | doSave(array $values, int $lifetime) Persists several cache items immediately. | from AbstractTrait |
hasItem($key) {@inheritdoc} | from AbstractTrait | |
clear() {@inheritdoc} | from AbstractTrait | |
deleteItem($key) {@inheritdoc} | from AbstractTrait | |
deleteItems(array $keys) {@inheritdoc} | from AbstractTrait | |
bool | enableVersioning(bool $enable = true) Enables/disables versioning of items. | from AbstractTrait |
reset() {@inheritdoc} | from AbstractTrait | |
static mixed | unserialize(string $value) Like the native unserialize() function but throws an exception if anything goes wrong. | from AbstractTrait |
static | handleUnserializeCallback($class) | from AbstractTrait |
__construct($connOrDsn, string $namespace = '', int $defaultLifetime = 0, array $options = array()) You can either pass an existing database connection as PDO instance or a Doctrine DBAL Connection or a DSN string that will be used to lazy-connect to the database when the cache is actually used. | ||
static AdapterInterface | createSystemCache(string $namespace, int $defaultLifetime, string $version, string $directory, LoggerInterface $logger = null) | from AbstractAdapter |
static | createConnection($dsn, array $options = array()) | from AbstractAdapter |
CacheItem | getItem($key) {@inheritdoc} | from AbstractAdapter |
Traversable|CacheItem[] | getItems(array $keys = array()) {@inheritdoc} | from AbstractAdapter |
save(CacheItemInterface $item) {@inheritdoc} | from AbstractAdapter | |
saveDeferred(CacheItemInterface $item) {@inheritdoc} | from AbstractAdapter | |
commit() {@inheritdoc} | from AbstractAdapter | |
__destruct() | from AbstractAdapter | |
createTable() Creates the table to store cache items which can be called once for setup. | from PdoTrait | |
prune() {@inheritdoc} | from PdoTrait |
Fetches several cache items.
array | $ids | The cache identifiers to fetch |
array|Traversable | The corresponding values found in the cache |
Confirms if the cache contains specified cache item.
string | $id | The identifier for which to check existence |
bool | True if item exists in the cache, false otherwise |
Deletes all items in the pool.
string | $namespace | The prefix used for all identifiers managed by this pool |
bool | True if the pool was successfully cleared, false otherwise |
Removes multiple items from the pool.
array | $ids | An array of identifiers that should be removed from the pool |
bool | True if the items were successfully removed, false otherwise |
Persists several cache items immediately.
array | $values | The values to cache, indexed by their cache identifier |
int | $lifetime | The lifetime of the cached values, 0 for persisting until manual cleaning |
array|bool | The identifiers that failed to be cached or a boolean stating if caching succeeded or not |
{@inheritdoc}
$key |
{@inheritdoc}
{@inheritdoc}
$key |
{@inheritdoc}
array | $keys |
Enables/disables versioning of items.
When versioning is enabled, clearing the cache is atomic and doesn't require listing existing keys to proceed, but old keys may need garbage collection and extra round-trips to the back-end are required.
Calling this method also clears the memoized namespace version and thus forces a resynchonization of it.
bool | $enable |
bool | the previous state of versioning |
{@inheritdoc}
Like the native unserialize() function but throws an exception if anything goes wrong.
string | $value |
mixed |
Exception |
$class |
You can either pass an existing database connection as PDO instance or a Doctrine DBAL Connection or a DSN string that will be used to lazy-connect to the database when the cache is actually used.
List of available options: * db_table: The name of the table [default: cache_items] * db_id_col: The column where to store the cache id [default: item_id] * db_data_col: The column where to store the cache data [default: item_data] * db_lifetime_col: The column where to store the lifetime [default: item_lifetime] * db_time_col: The column where to store the timestamp [default: item_time] * db_username: The username when lazy-connect [default: ''] * db_password: The password when lazy-connect [default: ''] * db_connection_options: An array of driver-specific connection options [default: array()]
$connOrDsn | ||
string | $namespace | |
int | $defaultLifetime | |
array | $options |
InvalidArgumentException | When first argument is not PDO nor Connection nor string |
InvalidArgumentException | When PDO error mode is not PDO::ERRMODE_EXCEPTION |
InvalidArgumentException | When namespace contains invalid characters |
string | $namespace | |
int | $defaultLifetime | |
string | $version | |
string | $directory | |
LoggerInterface | $logger |
AdapterInterface |
$dsn | ||
array | $options |
{@inheritdoc}
$key |
CacheItem |
{@inheritdoc}
array | $keys |
Traversable|CacheItem[] |
{@inheritdoc}
CacheItemInterface | $item |
{@inheritdoc}
CacheItemInterface | $item |
{@inheritdoc}
Creates the table to store cache items which can be called once for setup.
Cache ID are saved in a column of maximum length 255. Cache data is saved in a BLOB.
PDOException | When the table already exists |
DBALException | When the table already exists |
DomainException | When an unsupported PDO driver is used |
{@inheritdoc}
© 2004–2017 Fabien Potencier
Licensed under the MIT License.
https://api.symfony.com/4.1/Symfony/Component/Cache/Adapter/PdoAdapter.html