October\Rain\Halcyon\MemoryCacheManager

Extends:

  • Illuminate\Cache\CacheManager

Implements:

  • Illuminate\Contracts\Cache\Factory

MemoryCacheManager

Protected properties

There are no protected properties in the class.

Show inherited protected properties

Inherited protected properties

  • protected Illuminate\Contracts\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()

isEnabled returns true if cache manager is enabled via config

public void repository($store)

repository returns the memory repo

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\Contracts\Foundation\Application $app) - defined in Illuminate\Cache\CacheManager. Create a new Cache manager instance.
  • public Illuminate\Contracts\Cache\Repository driver(string|null $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 $this forgetDriver(array|string|null $name=NULL) - defined in Illuminate\Cache\CacheManager. Unset the given driver instances.
  • public string getDefaultDriver() - defined in Illuminate\Cache\CacheManager. Get the default cache driver name.
  • public void refreshEventDispatcher() - defined in Illuminate\Cache\CacheManager. Re-set the event dispatcher on all resolved cache repositories.
  • 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, wrapped in a repository.

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\Repository createApcDriver(array $config) - defined in Illuminate\Cache\CacheManager. Create an instance of the APC cache driver.
  • protected Illuminate\Cache\Repository createArrayDriver() - defined in Illuminate\Cache\CacheManager. Create an instance of the array cache driver.
  • protected Illuminate\Cache\Repository createDatabaseDriver(array $config) - defined in Illuminate\Cache\CacheManager. Create an instance of the database cache driver.
  • protected Illuminate\Cache\Repository createDynamodbDriver(array $config) - defined in Illuminate\Cache\CacheManager. Create an instance of the DynamoDB cache driver.
  • protected Illuminate\Cache\Repository createFileDriver(array $config) - defined in Illuminate\Cache\CacheManager. Create an instance of the file cache driver.
  • protected Illuminate\Cache\Repository createMemcachedDriver(array $config) - defined in Illuminate\Cache\CacheManager. Create an instance of the Memcached cache driver.
  • protected Illuminate\Cache\Repository createNullDriver() - defined in Illuminate\Cache\CacheManager. Create an instance of the Null cache driver.
  • protected Illuminate\Cache\Repository 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 DynamoDbClient newDynamodbClient($config) - defined in Illuminate\Cache\CacheManager. Create new DynamoDb Client instance.
  • protected Illuminate\Contracts\Cache\Repository resolve(string $name) - defined in Illuminate\Cache\CacheManager. Resolve the given store.
  • protected void setEventDispatcher(Illuminate\Cache\Repository $repository) - defined in Illuminate\Cache\CacheManager. Set the event dispatcher on the given repository instance.