Takatoshi Kondo
Takatoshi Kondo
Query the key and value pair of the least recently used without marking the key as most recently used.
I'm using sml with property using dependency. I wrote the class `property` that have core methods. I also define the class `table` that has the `property` as the dependency. Finally,...
When I create a pull request, is this a correct way? 1. Edit https://github.com/boost-experimental/sml/tree/master/include/boost/sml files. 2. Execute https://github.com/boost-experimental/sml/blob/master/tools/pph.sh to reflect the modification to https://github.com/boost-experimental/sml/blob/master/include/boost/sml.hpp. I noticed that some of modification...
I think that the following code should print "unexpected". Because `e1` is unexpected event for "state1"_s. But `process_event(e1{})` doesn't seems to be matched to `unexpected_event`. http://melpon.org/wandbox/permlink/49iofZ2OJ5x9dP1v ```cpp #include #include namespace...
I have a question about the policy of invoking callback handler. When I call `RedisAsyncClient::command()` during disconnected, callback function doesn't seems to be called. Is that intentional specification? Here is...
msgpack has int format family and float format family as follows: https://github.com/msgpack/msgpack/blob/master/spec.md#formats-int If a programming language has apropriate types, those families correspond to apropriate types. For example, int format family...
Propagate compiler options that are decided by cmake options to the parent project.
See https://github.com/msgpack/msgpack-c/pull/385#issuecomment-155959100 For example `-g` option is always added.
`msgpack::type::array_ref` is a kind of reference type as `msgpack::type::raw_ref`. It shouldn't allocate memory. However, it allocates memory from zone. https://github.com/msgpack/msgpack-c/blob/master/include/msgpack/v1/adaptor/array_ref.hpp#L256 It should be similar to raw_ref. https://github.com/msgpack/msgpack-c/blob/master/include/msgpack/v1/adaptor/raw.hpp#L83