-
Docs
Backend
-
Behaviors
-
Classes
-
Controllers
-
Database
-
Seeds
-
-
Facades
-
FormWidgets
-
Helpers
-
Exception
- Backend
-
-
Models
-
ReportWidgets
-
Skins
-
Traits
-
Widgets
- ServiceProvider
-
-
Cms
-
Classes
- Asset
- AutoDatasource
- CmsCompoundObject
- CmsController
- CmsException
- CmsObject
- CmsObjectCollection
- CodeBase
- CodeParser
- ComponentBase
- ComponentHelpers
- ComponentManager
- ComponentPartial
- Content
- Controller
- Layout
- LayoutCode
- MediaLibrary
- MediaLibraryItem
- MediaViewHelper
- Meta
- ObjectMemoryCache
- Page
- PageCode
- Partial
- PartialCode
- PartialStack
- Router
- Theme
- ThemeManager
-
Components
-
Contracts
-
Controllers
-
Facades
-
FormWidgets
-
Helpers
-
Models
-
ReportWidgets
-
Traits
-
Twig
- ComponentNode
- ComponentTokenParser
- ContentNode
- ContentTokenParser
- DebugExtension
- DefaultNode
- DefaultTokenParser
- Extension
- FlashNode
- FlashTokenParser
- FrameworkNode
- FrameworkTokenParser
- Loader
- PageNode
- PageTokenParser
- PartialNode
- PartialTokenParser
- PlaceholderNode
- PlaceholderTokenParser
- PutNode
- PutTokenParser
- ScriptsNode
- ScriptsTokenParser
- StylesNode
- StylesTokenParser
-
Widgets
- ServiceProvider
-
-
System
-
Behaviors
-
Classes
-
Console
-
Controllers
-
Database
-
Helpers
-
Models
-
ReportWidgets
-
Traits
-
Twig
- ServiceProvider
-
-
Events
-
backend
-
ajax
-
filter
-
form
-
list
-
menu
-
page
-
user
-
-
cms
-
ajax
-
block
-
combiner
-
component
-
object
-
page
-
router
-
template
-
theme
-
-
halcyon
-
datasource
-
-
mailer
-
media
-
model
-
system
-
assets
-
console
-
mirror
-
theme
-
-
reportwidgets
-
settings
- extendConfigFile
-
-
translator
-
-
Library
-
Argon
-
Auth
-
Models
- AuthException
- Manager
-
-
Config
-
Cookie
-
Middleware
-
-
Database
-
Attach
-
Behaviors
-
Concerns
-
Connections
-
Connectors
-
Models
-
Relations
-
Schema
-
Traits
-
Updates
- README
- Builder
- Collection
- DatabaseServiceProvider
- DataFeed
- Dongle
- MemoryCache
- Model
- ModelBehavior
- ModelException
- NestedTreeScope
- Pivot
- QueryBuilder
- SortableScope
- TreeCollection
- Updater
-
-
Events
-
Exception
-
Extension
-
Filesystem
-
Flash
-
Foundation
-
Bootstrap
-
Console
-
Exception
-
Http
-
Middleware
- Kernel
-
-
Providers
- Application
- Maker
-
-
Halcyon
-
Datasource
-
Exception
-
Processors
-
Traits
- README
- Builder
- Collection
- HalcyonServiceProvider
- MemoryCacheManager
- MemoryRepository
- Model
-
-
Html
-
Mail
-
Network
-
Parse
-
Router
-
Scaffold
-
Support
-
Translation
-
- Documentation
- API
- Library
- Halcyon
- MemoryCacheManager
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
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.