Skip to content

Commit bb88305

Browse files
committed
[nop] Housekeeping
1 parent 47caaee commit bb88305

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ This project uses [**Break Versioning**](https://www.taoensso.com/break-versioni
1313
- \[new] \[#477] Add [gzip-wrapping packer](https://cljdoc.org/d/com.taoensso/sente/CURRENT/api/taoensso.sente.packers.gzip) \[956268c8]
1414
- \[new] \[#476] Make it easier to test server restarts \[f292180b]
1515
- \[new] \[#474] Add UUID support to [Msgpack packer](https://cljdoc.org/d/com.taoensso/sente/CURRENT/api/taoensso.sente.packers.msgpack) (@jrgvf) \[2fdd8f82]
16-
* \[doc] Add [packer info](https://github.com/taoensso/sente/wiki/5-Packers) to wiki \[08dc349c]
17-
* \[mod] Drop Clojure v1.10 testing \[648ac31d]
16+
- \[doc] Add [packer info](https://github.com/taoensso/sente/wiki/5-Packers) to wiki \[08dc349c]
17+
- \[mod] Drop Clojure v1.10 testing \[648ac31d]
1818

1919
---
2020

wiki/5-Packers.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ The following packers are available out-the-box:
44

55
| Format | Packer | Type | Comments |
66
| ------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ----------- | ----------------------------- |
7-
| [edn](https://github.com/edn-format/edn) | [Link](https://cljdoc.org/d/com.taoensso/sente/CURRENT/api/taoensso.sente.packers.edn) | Text | Default, mature |
7+
| [edn](https://github.com/edn-format/edn) | [Link](https://cljdoc.org/d/com.taoensso/sente/CURRENT/api/taoensso.sente.packers.edn) | Text | Mature, default |
88
| [Transit](https://github.com/cognitect/transit-format) | [Link](https://cljdoc.org/d/com.taoensso/sente/CURRENT/api/taoensso.sente.packers.transit) | Text (JSON) | Mature |
99
| [MessagePack](https://msgpack.org/index.html) | [Link](https://cljdoc.org/d/com.taoensso/sente/CURRENT/api/taoensso.sente.packers.msgpack) | Binary | New high-speed implementation |
1010
| [gzip](https://en.wikipedia.org/wiki/Gzip) | [Link](https://cljdoc.org/d/com.taoensso/sente/CURRENT/api/taoensso.sente.packers.gzip) | Text+Binary | Wraps any other packer |
@@ -27,7 +27,7 @@ To use a packer you'll import it and provide it as an option to **both** your Se
2727
(sente/make-channel-socket-client! ... {:packer packer ...})))
2828
```
2929

30-
To use the gzip wrapping packer:
30+
To add gzip you'll wrap the underlying packer:
3131

3232
```clojure
3333
;; Server (clj)
@@ -64,4 +64,4 @@ There's some [benchmarks](https://github.com/taoensso/sente/blob/ea59599d6690d29
6464

6565
<img alt="Benchmarks" src="https://github.com/user-attachments/assets/2b9c1bae-1b3a-4cd7-8d18-bea5dc6becda" />
6666

67-
Sente's [Reference example](https://github.com/taoensso/sente/tree/master/example-project) project also allows you to easily switch between different packers for testing, etc.
67+
Sente's [Reference example](https://github.com/taoensso/sente/tree/master/example-project) also allows you to easily switch between different packers for testing, etc.

0 commit comments

Comments
 (0)