Skip to content

Commit 8434171

Browse files
committed
ICM: Memcache support removed.
1 parent 48e27d1 commit 8434171

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

README.md

-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ Overlapping can be prevented by various strategies:
3838
- `file` (default)
3939
- `mysql`
4040
- `redis`
41-
- `memcache`
4241
- `memcached`
4342

4443
Default `file` strategy is fine for a small applications, which are deployed on a single server.

src/Mutex.php

-3
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,6 @@ private function strategy()
3636
case 'redis':
3737
return new PredisRedisLock(Redis::connection());
3838

39-
case 'memcache':
40-
throw new MutexException('Strategy `memcache` is not implemented yet.');
41-
4239
case 'memcached':
4340
throw new MutexException('Strategy `memcached` is not implemented yet.');
4441

0 commit comments

Comments
 (0)