Taro L. Saito
Taro L. Saito
Snappy-based parallel compression/decompression
Loading large data into memory may be slow. First, measure the loading performance of huge (e.g. 10GB) LArray from a file.
It still shows the usage for older versions...
This topic is an excerpt of the discussion in https://github.com/msgpack/msgpack-java/pull/82#discussion_r12501596 In event-driven I/O, we call unpackXXX after we receive new data from a network (or another resource). That indicates unpackXXX...
We need thread-safe ValueHolder so that we can safely pass the read value into another function. ValueBuffer is an example of its implementation. https://github.com/msgpack/msgpack-java/blob/v07-value-sf/msgpack-value/src/main/java/org/msgpack/value/ValueBuffer.java
https://github.com/msgpack/msgpack-java/pull/82#discussion_r12501173
I'm now prototyping pure-scala implementation of msgpack for supporting Scala, Scala.js, and Scala.native: https://github.com/wvlet/airframe/pull/127 Basic ideas for the implementation is as follows: - Having SPI for providing interfaces for implementing...
This is a proposal to deprecate the current http client interface HttpClient[F[_], Req, Resp] that uses get[Resp], getResource[Resp], post[Resp], etc. Instead, adding a Scala-3 friendly simplified interface [SyncClient/AsyncClient](https://github.com/wvlet/airframe/blob/fc9e92c64c94e74fd4e0412a6dd7675fec711279/airframe-http/src/main/scala/wvlet/airframe/http/client/HttpClients.scala#L48) that consolidate...
The current default behavior of MessageCodec is using array output of object fields, but it should be map output unless the output size is the concern of the user.