Skip to content

Commit dadcf0e

Browse files
author
Ivan Baidakou
committed
Improve documentation
1 parent fd07e88 commit dadcf0e

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,17 @@ Boost::ASIO low-level redis client (connector)
1919

2020
### 0.03
2121
- improved protocol parser (no memory allocations during input stream validity check)
22+
- more detailed information in `protocol_error_t`
23+
- added async `incr` speed test example
24+
- [small API breakage] `positive_parse_result_t` was enriched with parcing policy;
25+
now instead of `positive_parse_result_t<Iterator>` should be written:
26+
27+
```cpp
28+
using Policy = r::parsing_policy::keep_result;
29+
using result_t = r::parse_result_mapper_t<Iterator, Policy>;
30+
```
31+
- [small API breakage] `protocol_error_t` instead of `std::string what` member
32+
now contains `boost::system::error_code code`
2233

2334
### 0.02
2435
- added windows support

0 commit comments

Comments
 (0)