Coming from Redis, I love that you can just put any binary blob in Redis which is just treated as a string. This is possible because Redis strings are what they call 'binary safe'. This makes it possible to do stuff like rangequeries on top of string-encoded binary data, which is super useful for bitset-operations, etc.
I'm investigating Riak and I like it so far. Riak seems to have range queries, but I'm not sure if strings in Riak are "Binary safe" in the above sense. If not, is there another way to store binary data in Riak and still do range queries over them quickly?
Thanks