File tree 2 files changed +13
-3
lines changed
2 files changed +13
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 2.2.0 (2018-01-24)
4
+
5
+ * Feature: Support communication over Unix domain sockets (UDS)
6
+ (#70 by @clue )
7
+
8
+ ``` php
9
+ // new: now supports redis over Unix domain sockets (UDS)
10
+ $factory->createClient('redis+unix:///tmp/redis.sock');
11
+ ```
12
+
3
13
## 2.1.0 (2017-09-25)
4
14
5
15
* Feature: Update Socket dependency to support hosts file on all platforms
@@ -29,7 +39,7 @@ affected by any BC breaks, see below for more details.
29
39
30
40
> All of this affects the `Factory` only, which is mostly considered
31
41
"advanced usage". If you're affected by this BC break, then it's
32
- recomme ded to first update to the intermediary v1.2.0 release, which
42
+ recommended to first update to the intermediary v1.2.0 release, which
33
43
allows you to use the `redis://` URI scheme and a standard
34
44
`ConnectorInterface` and then update to this version without causing a
35
45
BC break.
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ This library provides you a simple API to work with your Redis database from wit
9
9
It enables you to set and query its data or use its PubSub topics to react to incoming events.
10
10
11
11
* ** Async execution of Commands** -
12
- Send any number commands to Redis in parallel (automatic pipeline) and
12
+ Send any number of commands to Redis in parallel (automatic pipeline) and
13
13
process their responses as soon as results come in.
14
14
The Promise-based design provides a * sane* interface to working with async responses.
15
15
* ** Event-driven core** -
@@ -268,7 +268,7 @@ The recommended way to install this library is [through Composer](https://getcom
268
268
This will install the latest supported version:
269
269
270
270
``` bash
271
- $ composer require clue/redis-react:^2.1
271
+ $ composer require clue/redis-react:^2.2
272
272
```
273
273
274
274
See also the [ CHANGELOG] ( CHANGELOG.md ) for details about version upgrades.
You can’t perform that action at this time.
0 commit comments