redis-protobuf icon indicating copy to clipboard operation
redis-protobuf copied to clipboard

Redis module for reading and writing Protobuf messages

Results 9 redis-protobuf issues
Sort by recently updated
recently updated
newest added

@sewenew let me run an idea by you: [geobuf](https://github.com/mapbox/geobuf) is a common wire format for GeoJSON - isomorphic but smaller than the naive serialisation with geojson.proto I used geobuf is...

really nice package! my use case is accumulating, sometimes transforming, and periodically serving GeoJSON, either as JSON or as geobuf works better for my use case than RedisJSON (see https://github.com/RedisJSON/RedisJSON/issues/295)...

Map keys cannot contain the following characters: *.*, *[*, *]*. We should support some escaping mechanism to let end user escape these characters.

By now, we can only set a single element of an array or map, or add a new element. We should give end user and option to overwrite the whole...

By now, we use `new` to allocate memory, however, in this way, the `INFO` command cannot show the correct memory usage of the Redis instance. Instead, we should use the...

When loading RDB file, if we met some unknown Protobuf message, e.g. the .proto file has been remove from the given directory, redis-protobuf fails to start. Instead, we can add...

PB.HELP command shows the help info on redis-protobuf commands.

By now, if the given type mismatches the type of the value stored in key, redis-protobuf returns an error reply: ``` 127.0.0.1:6379> pb.set k Msg '{"i" : 3}' (integer) 1...