Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Laravel configurable cache manager

License

NotificationsYou must be signed in to change notification settings

salehhashemi1992/laravel-configurable-cache

Repository files navigation

Features

  • Provides configurable cache settings with dedicated ttl and prefix for each
  • Supports all main cache operations provided by Laravel, such as put, get, increment, and delete

Requirements

  • PHP: ^8.1
  • Laravel framework: ^9
VersionL9L10L11
1.4

Installation

You can install the package via composer:

composer require salehhashemi/laravel-configurable-cache

Next, from the command line type:

php artisan vendor:publish --provider="Salehhashemi\ConfigurableCache\ConfigurableCacheServiceProvider"

Finally, adjust the settings in the published configuration file located inconfig/configurable-cache.php as per yourrequirements.

Usage

To use the package, you can use theConfigurableCache class methods. Here's an example:

useSalehhashemi\ConfigurableCache\ConfigurableCache;// Storing an item in the cache with `_tiny_` prefix for 15 minutesConfigurableCache::put('testKey','Hello World!','tiny');// Retrieving an item from the cache with `_short_` prefix that is stored for an hour$value = ConfigurableCache::get('testKey','short');// Delete a cache item with `_otp_` prefixConfigurableCache::delete('testKey','otp');// if `testKey` doesn't exist in the 'default' cache, the Closure will be executed and its result will be stored in the cache under `testKey` with `_default_` prefix$value = ConfigurableCache::remember('testKey',function () {return'Hello World!';});

Default configuration

You can change these configurations in your configurable-cache.php config file:

'configs' => [    'default' => [        'prefix' => '_default_',        'duration' => '+1 Year',    ],    'tiny' => [        'prefix' => '_tiny_',        'duration' => '+15 minutes',    ],    'short' => [        'prefix' => '_short_',        'duration' => '+1 hour',    ],    'otp' => [        'prefix' => '_otp_',        'duration' => '+3 minutes',    ],]

Testing

composertest

Changelog

Please seeCHANGELOG for more information what has changed recently.

Contributing

Please seeCONTRIBUTING for details.

Credits

License

The MIT License (MIT). Please seeLicense File for more information.

About

Laravel configurable cache manager

Topics

Resources

License

Contributing

Stars

Watchers

Forks

Contributors2

  •  
  •  

Languages


[8]ページ先頭

©2009-2025 Movatter.jp