mirror of
https://github.com/friendica/friendica
synced 2025-04-24 09:10:17 +00:00
Support for APCu caching
This commit is contained in:
parent
e9c230e109
commit
3ca8fa0e00
6 changed files with 217 additions and 2 deletions
15
tests/src/Core/Lock/APCuCacheLockDriverTest.php
Normal file
15
tests/src/Core/Lock/APCuCacheLockDriverTest.php
Normal file
|
@ -0,0 +1,15 @@
|
|||
<?php
|
||||
|
||||
namespace Friendica\Test\src\Core\Lock;
|
||||
|
||||
|
||||
use Friendica\Core\Cache\APCuCache;
|
||||
use Friendica\Core\Lock\CacheLockDriver;
|
||||
|
||||
class APCuCacheLockDriverTest extends LockTest
|
||||
{
|
||||
protected function getInstance()
|
||||
{
|
||||
return new CacheLockDriver(new APCuCache());
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue