@@ -170,7 +170,7 @@ req.push("INCR", "key");
170
170
req.push("QUIT");
171
171
```
172
172
173
- and its response also has three comamnds and can be read in the
173
+ and its response also has three commands and can be read in the
174
174
following response object
175
175
176
176
``` cpp
@@ -447,7 +447,7 @@ main motivations for choosing an echo server are
447
447
448
448
* Simple to implement and does not require expertise level in most languages.
449
449
* I/O bound: Echo servers have very low CPU consumption in general
450
- and therefore are excelent to measure how a program handles concurrent requests.
450
+ and therefore are excellent to measure how a program handles concurrent requests.
451
451
* It simulates very well a typical backend in regard to concurrency.
452
452
453
453
I also imposed some constraints on the implementations
@@ -510,7 +510,7 @@ in the graph, the reasons are
510
510
I don't know for sure why it is so slow, I suppose it has
511
511
something to do with its lack of automatic
512
512
[ pipelining] ( https://redis.io/docs/manual/pipelining/ ) support.
513
- In fact, the more TCP connections I lauch the worse its
513
+ In fact, the more TCP connections I launch the worse its
514
514
performance gets.
515
515
516
516
* Libuv: I left it out because it would require me writing to much
@@ -721,11 +721,11 @@ https://lists.boost.org/Archives/boost/2023/01/253944.php.
721
721
makes it simpler to use the ` requirepass ` configuration in Redis.
722
722
723
723
* (Issue [ 189] ( https://github.com/boostorg/redis/issues/189 ) ).
724
- Fixes narrowing convertion by using ` std::size_t ` instead of
724
+ Fixes narrowing conversion by using ` std::size_t ` instead of
725
725
` std::uint64_t ` for the sizes of bulks and aggregates. The code
726
726
relies now on ` std::from_chars ` returning an error if a value
727
727
greater than 32 is received on platforms on which the size
728
- of` std::size_t ` is 32.
728
+ of ` std::size_t ` is 32.
729
729
730
730
731
731
### Boost 1.84 (First release in Boost)
@@ -797,7 +797,7 @@ https://lists.boost.org/Archives/boost/2023/01/253944.php.
797
797
would wait for a response to arrive before sending the next one. Now requests
798
798
are continuously coalesced and written to the socket. ` request::coalesce `
799
799
became unnecessary and was removed. I could measure significative performance
800
- gains with theses changes.
800
+ gains with these changes.
801
801
802
802
* Improves serialization examples using Boost.Describe to serialize to JSON and protobuf. See
803
803
cpp20_json.cpp and cpp20_protobuf.cpp for more details.
@@ -1004,7 +1004,7 @@ https://lists.boost.org/Archives/boost/2023/01/253944.php.
1004
1004
* Fixes a bug in the ` connection::async_run(host, port) ` overload
1005
1005
that was causing crashes on reconnection.
1006
1006
1007
- * Fixes the executor usage in the connection class. Before theses
1007
+ * Fixes the executor usage in the connection class. Before these
1008
1008
changes it was imposing ` any_io_executor ` on users.
1009
1009
1010
1010
* ` connection::async_receiver_event ` is not cancelled anymore when
0 commit comments