October\Rain\Halcyon\MemoryCacheManager

Source: ~/vendor/october/rain/src/Halcyon/MemoryCacheManager.php

Extends:

  • Illuminate\Cache\CacheManager

Implements:

  • Illuminate\Contracts\Cache\Factory

Protected properties

There are no protected properties in the class.

Show inherited protected properties

Inherited protected properties

  • protected Illuminate\Foundation\Application $app - defined in Illuminate\Cache\CacheManager. The application instance.
  • protected array $stores - defined in Illuminate\Cache\CacheManager. The array of resolved cache stores.
  • protected array $customCreators - defined in Illuminate\Cache\CacheManager. The registered custom driver creators.

Public methods

public static void isEnabled()

public void repository($store)
Parameters
  • $store

Show inherited public methods

Inherited public methods

  • public mixed __call(string $method, array $parameters) - defined in Illuminate\Cache\CacheManager. Dynamically call the default driver instance.
  • public void __construct(Illuminate\Foundation\Application $app) - defined in Illuminate\Cache\CacheManager. Create a new Cache manager instance.
  • public mixed driver(string $driver=NULL) - defined in Illuminate\Cache\CacheManager. Get a cache driver instance.
  • public $this extend(string $driver, Closure $callback) - defined in Illuminate\Cache\CacheManager. Register a custom driver creator Closure.
  • public string getDefaultDriver() - defined in Illuminate\Cache\CacheManager. Get the default cache driver name.
  • public void setDefaultDriver(string $name) - defined in Illuminate\Cache\CacheManager. Set the default cache driver name.
  • public Illuminate\Contracts\Cache\Repository store(string|null $name=NULL) - defined in Illuminate\Cache\CacheManager. Get a cache store instance by name.

Protected methods

Show inherited protected methods

Inherited protected methods

  • protected mixed callCustomCreator(array $config) - defined in Illuminate\Cache\CacheManager. Call a custom driver creator.
  • protected Illuminate\Cache\ApcStore createApcDriver(array $config) - defined in Illuminate\Cache\CacheManager. Create an instance of the APC cache driver.
  • protected Illuminate\Cache\ArrayStore createArrayDriver() - defined in Illuminate\Cache\CacheManager. Create an instance of the array cache driver.
  • protected Illuminate\Cache\DatabaseStore createDatabaseDriver(array $config) - defined in Illuminate\Cache\CacheManager. Create an instance of the database cache driver.
  • protected Illuminate\Cache\FileStore createFileDriver(array $config) - defined in Illuminate\Cache\CacheManager. Create an instance of the file cache driver.
  • protected Illuminate\Cache\MemcachedStore createMemcachedDriver(array $config) - defined in Illuminate\Cache\CacheManager. Create an instance of the Memcached cache driver.
  • protected Illuminate\Cache\NullStore createNullDriver() - defined in Illuminate\Cache\CacheManager. Create an instance of the Null cache driver.
  • protected Illuminate\Cache\RedisStore createRedisDriver(array $config) - defined in Illuminate\Cache\CacheManager. Create an instance of the Redis cache driver.
  • protected Illuminate\Contracts\Cache\Repository get(string $name) - defined in Illuminate\Cache\CacheManager. Attempt to get the store from the local cache.
  • protected array getConfig(string $name) - defined in Illuminate\Cache\CacheManager. Get the cache connection configuration.
  • protected string getPrefix(array $config) - defined in Illuminate\Cache\CacheManager. Get the cache prefix.
  • protected Illuminate\Contracts\Cache\Repository resolve(string $name) - defined in Illuminate\Cache\CacheManager. Resolve the given store.