You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-\[new]\[#476] Make it easier to test server restarts \[f292180b]
15
15
-\[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]
Copy file name to clipboardExpand all lines: README.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,8 @@ See [here][GitHub releases] for earlier releases.
34
34
- Support for users simultaneously connected with **multiple clients** and/or devices
35
35
- Realtime info on **which users are connected**, and over which protocols
36
36
- Standard **Ring security model**: auth as you like, HTTPS when available, CSRF support, etc.
37
-
- Support for [several popular web servers](../../tree/master/src/taoensso/sente/server_adapters), [easily extended](../../blob/master/src/taoensso/sente/interfaces.cljc) to other servers.
37
+
- Support for diverse [web servers](https://cljdoc.org/d/com.taoensso/sente/CURRENT/api/taoensso.sente.interfaces#IServerChanAdapter) to others
38
+
- Support for diverse [transmission formats](https://github.com/taoensso/sente/wiki/5-Packers), [easily extended](https://cljdoc.org/d/com.taoensso/sente/CURRENT/api/taoensso.sente.interfaces#IPacker2) to others
|[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|
8
8
|[Transit](https://github.com/cognitect/transit-format)|[Link](https://cljdoc.org/d/com.taoensso/sente/CURRENT/api/taoensso.sente.packers.transit)| Text (JSON) | Mature |
9
9
|[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 |
10
10
|[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
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