Skip to content

Commit 4ed2bdb

Browse files
committed
YAS updated to 6.0.2
1 parent 5c20b33 commit 4ed2bdb

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -196,8 +196,8 @@ set(yas_PREFIX ${CMAKE_CURRENT_BINARY_DIR}/external/yas)
196196
ExternalProject_Add(
197197
yas
198198
PREFIX ${yas_PREFIX}
199-
URL "https://github.com/niXman/yas/archive/5.0.zip"
200-
URL_MD5 "1acaef7cb8ab4178453dfa67a0112ea8"
199+
URL "https://github.com/niXman/yas/archive/6.0.2.zip"
200+
URL_MD5 "ed1c63a6a6bb2db2ad7f8547192d79a7"
201201
CONFIGURE_COMMAND ""
202202
BUILD_COMMAND ""
203203
INSTALL_COMMAND mkdir -p ${yas_PREFIX}/include/ && cp -r ${yas_PREFIX}/src/yas/include/yas ${yas_PREFIX}/include/

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ on a typical desktop computer with Intel Core i5 processor running Ubuntu 14.04.
5252
* avro 1.8.2
5353
* capnproto 0.6.1
5454
* flatbuffers 1.7.1
55-
* YAS 5.0.0
55+
* YAS 6.0.2
5656

5757
| serializer | object's size | avg. total time |
5858
| -------------- | ------------- | --------------- |
@@ -63,8 +63,8 @@ on a typical desktop computer with Intel Core i5 processor running Ubuntu 14.04.
6363
| msgpack | 13402 | 33815 |
6464
| cereal | 17416 | 11031 |
6565
| avro | 16384 | 44187 |
66-
| yas | 17416 | 3223 |
67-
| yas-compact | 13553 | 21481 |
66+
| yas | 17416 | 3152 |
67+
| yas-compact | 13321 | 24878 |
6868

6969
###### Size
7070

images/graphs.R

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ size <- c(
1616
,17768 # capnproto
1717
,17632 # flatbuffers
1818
,17416 # yas
19-
,13553 # yas-compact
19+
,13321 # yas-compact
2020
)
2121
# for t in thrift-binary thrift-compact protobuf boost msgpack cereal avro yas yas-compact; do rm -f /tmp/$t.time; echo -n "$t: "; for i in `seq 1 50`; do ./benchmark 1000000 $t | grep time | awk '{print $4}' >>/tmp/$t.time; done; awk '{ sum += $1 } END { print sum/50}' /tmp/$t.time; done
2222
time <- c(
@@ -27,8 +27,8 @@ time <- c(
2727
,33815 # msgpack
2828
,11031 # cereal
2929
,44187 # avro
30-
,3223 # yas
31-
,21481 # yas-compact
30+
,3152 # yas
31+
,24878 # yas-compact
3232
)
3333
time2 <- c(
3434
4849 # capnproto

images/size.png

-64 Bytes
Loading

images/time.png

163 Bytes
Loading

0 commit comments

Comments
 (0)