Skip to content

Commit 509e480

Browse files
committed
fix readme
1 parent 8fdb64e commit 509e480

File tree

1 file changed

+2
-20
lines changed

1 file changed

+2
-20
lines changed

README.md

Lines changed: 2 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,6 @@
11
# json iterator (jsoniter)
22

3-
faster than DOM, more usable than SAX/StAX. Join us [![Gitter chat](https://badges.gitter.im/gitterHQ/gitter.png)](https://gitter.im/json-iterator/Lobby)
3+
Join us [![Gitter chat](https://badges.gitter.im/gitterHQ/gitter.png)](https://gitter.im/json-iterator/Lobby)
44

5-
This library also has a golang version, with same api and performance: https://github.com/json-iterator/go
5+
http://jsoniter.com/
66

7-
# Benchmark (databind)
8-
9-
| | jsoniter | dsljson | fastjson | gson | jackson |
10-
| --- | --- | --- | --- | --- | --- |
11-
| 10kb | 5791477.392 | 1825251.497 | 528568.402 | 509073.118 | 1002068.202 |
12-
| 100kb | 64452.613 | 19128.133 | 8612.036 | 6303.252 | 12011.405 |
13-
14-
10x faster than fastjson, 3x faster than dsljson
15-
16-
# Example Usage
17-
18-
Give me json and class, give back the object bind
19-
20-
```
21-
Jsoniter iter = Jsoniter.parseString("[1,2,3]");
22-
int[] val = iter.read(int[].class);
23-
assertArrayEquals(new int[]{1, 2, 3}, val);
24-
```

0 commit comments

Comments
 (0)