spatie / blink
眨眼间过期的缓存
1.4.0
2023-07-19 18:28 UTC
Requires
- php: ^8.0
Requires (Dev)
- phpunit/phpunit: ^9.5
README
此包包含一个名为 Blink
的类,可以缓存值。缓存仅跨越单个请求的长度。
它可以用如下方式使用
$blink = new Blink(); $blink->put('key', 'value'); $blink->get('key'); // Returns 'value' $blink->get('prefix*'); // Returns an array of values whose keys start with 'prefix' // once will only execute the given callable if the given key didn't exist yet $expensiveFunction = function() { return rand(); }); $blink->once('random', $expensiveFunction); // returns random number $blink->once('random', $expensiveFunction); // returns the same number $blink->has('key'); // Returns true $blink->has('prefix*'); // Returns true if the blink contains a key that starts with 'prefix' // Specify a default value for when the specified key does not exist $blink->get('non existing key', 'default') // Returns 'default' $blink->put('anotherKey', 'anotherValue'); // Put multiple items in one go $blink->put(['ringo' => 'drums', 'paul' => 'bass']); $blink->all(); // Returns an array with all items $blink->forget('key'); // Removes the item $blink->forget('prefix*'); // Forget all items of which the key starts with 'prefix' $blink->flush(); // Empty the entire blink $blink->flushStartingWith('somekey'); // Remove all items whose keys start with "somekey" $blink->increment('number'); // $blink->get('number') will return 1 $blink->increment('number'); // $blink->get('number') will return 2 $blink->increment('number', 3); // $blink->get('number') will return 5 // Blink implements ArrayAccess $blink['key'] = 'value'; $blink['key']; // Returns 'value' isset($blink['key']); // Returns true unset($blink['key']); // Equivalent to removing the value // Blink implements Countable count($blink); // Returns 0 $blink->put('key', 'value'); count($blink); // Returns 1
如果您想在当前请求中使用相同的实例,可以使用静态方法 global
。
Blink::global()->put('key', 'value'); Blink::global()->get('key') // Returns 'value'
阅读此 README 的使用部分,了解其他方法。
支持我们
我们投入了大量资源来创建一流的开放源代码包。您可以通过购买我们的付费产品之一来支持我们。
我们非常感谢您从家乡寄给我们明信片,说明您正在使用我们的哪个包。您可以在我们的联系页面上找到我们的地址。我们将所有收到的明信片发布在我们的虚拟明信片墙上。
安装
您可以通过 composer 安装此包
composer require spatie/blink
使用
一个 Blink
实例可以直接创建。
$blink = new \Spatie\Blink\Blink()
您可以在它上调用以下方法
put
/** * Put a value in the blink cache. * * @param string|array $name * @param string|int|null $value * * @return $this */ public function put($name, $value = null)
get
/** * Get a value from the blink cache. * * This function has support for the '*' wildcard. * * @param string $name * * @return null|string */ public function get(string $name)
has
/* * Determine if the blink cache has a value for the given name. * * This function has support for the '*' wildcard. */ public function has(string $name) : bool
once
/** * Only if the given key is not present in the blink cache the callable will be executed. * * The result of the callable will be stored in the given key and returned. * * @param $key * @param callable $callable * * @return mixed */ public function once($key, callable $callable)
onceIf
/** * Use the "once" method only if the given condition is true. * * Otherwise, the callable will be executed. * * @param bool $shouldBlink * @param $key * @param callable * * @return mixed */ public function onceIf($shouldBlink, $key, callable $callable)
all
/* * Get all values in the blink cache. */ public function all() : array
allStartingWith
/** * Get all values from the blink cache which keys start with the given string. * * @param string $startingWith * * @return array */ public function allStartingWith(string $startingWith = '') : array
forget
/** * Forget a value from the blink cache. * * This function has support for the '*' wildcard. * * @param string $key * * @return $this */ public function forget(string $key)
flush
/** * Flush all values from the blink cache. * * @return $this */ public function flush()
flushStartingWith
/** * Flush all values from the blink cache which keys start with the specified value. * * @param string $startingWith * * @return $this */ public function flushStartingWith(string $startingWith)
pull
/** * Get and forget a value from the blink cache. * * This function has support for the '*' wildcard. * * @param string $name * * @return null|string */ public function pull(string $name)
increment
/** * Increment a value from the blink cache. * * @param string $name * @param int $by * * @return int|null|string */ public function increment(string $name, int $by = 1)
decrement
/** * Decrement a value from the blink cache. * * @param string $name * @param int $by * * @return int|null|string */ public function decrement(string $name, int $by = 1)
变更日志
请参阅变更日志以获取有关最近更改的更多信息。
测试
$ composer test
贡献
请参阅贡献以获取详细信息。
安全
如果您发现有关安全的错误,请通过[email protected] 发送电子邮件,而不是使用问题跟踪器。
鸣谢
我们从Statamic 的 Blink 辅助程序获得了这个包的想法和名称。我们与他们取得了联系,并获得了使用 blink
名称的许可。
许可
MIT 许可证 (MIT)。有关更多信息,请参阅许可文件。