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
Copy file name to clipboardExpand all lines: smile/README.md
+10-7Lines changed: 10 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -1,14 +1,18 @@
1
1
## Overview
2
2
3
-
This Jackson extension handles reading and writing of data encoded in [Smile](http://wiki.fasterxml.com/SmileFormatSpec) data format ("binary JSON").
3
+
This Jackson extension handles reading and writing of data encoded in [Smile](https://github.com/FasterXML/smile-format-specification)
4
+
data format ("binary JSON").
4
5
It extends standard Jackson streaming API (`JsonFactory`, `JsonParser`, `JsonGenerator`), and as such works seamlessly with all the higher level data abstractions (data binding, tree model, and pluggable extensions).
Module has been mature since Jackson 1.6, and is used widely ([over 150 projects](http://mvnrepository.com/artifact/com.fasterxml.jackson.dataformat/jackson-dataformat-smile)), often as a dynamically configurable alternative to textual JSON.
13
+
14
+
It also works very well for use cases like caching, especially when databinding is configured to
15
+
[serialize POJOs as Arrays](https://medium.com/@cowtowncoder/serializing-java-pojo-as-json-array-with-jackson-2-more-compact-output-510a85c019d4) which can further reduce size of serialized objects.
12
16
13
17
## Maven dependency
14
18
@@ -18,7 +22,7 @@ To use this module on Maven-based projects, use following dependency:
0 commit comments