From c367da60e9dbc3900a8cc6d3f6674839fdd598be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Vo=C5=99=C3=AD=C5=A1ek?= Date: Tue, 10 Dec 2024 22:52:26 +0100 Subject: [PATCH] Update PHP Redlock impl. doc (#195) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix the PHP Redlock impl. link and move it as the 1st mentioned PHP impl. as it is the most popular and the only library which supports both https://github.com/phpredis/phpredis and https://github.com/predis/predis clients. Signed-off-by: Michael Voříšek --- topics/distlock.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/topics/distlock.md b/topics/distlock.md index a464ec75..a9b7b355 100644 --- a/topics/distlock.md +++ b/topics/distlock.md @@ -28,8 +28,8 @@ already available that can be used for reference. * [Redlock-py](https://github.com/SPSCommerce/redlock-py) (Python implementation). * [Pottery](https://github.com/brainix/pottery#redlock) (Python implementation). * [Aioredlock](https://github.com/joanvila/aioredlock) (Asyncio Python implementation). +* [RedisMutex](https://github.com/malkusch/lock#redismutex) (PHP implementation with both [Redis extension](https://github.com/phpredis/phpredis) and [Predis library](https://github.com/predis/predis) clients support). * [Redlock-php](https://github.com/ronnylt/redlock-php) (PHP implementation). -* [PHPRedisMutex](https://github.com/malkusch/lock#phpredismutex) (further PHP implementation). * [cheprasov/php-redis-lock](https://github.com/cheprasov/php-redis-lock) (PHP library for locks). * [rtckit/react-redlock](https://github.com/rtckit/reactphp-redlock) (Async PHP implementation). * [Redsync](https://github.com/go-redsync/redsync) (Go implementation).