I am new to both Redis and BookSleeve. I am evaluating whether to use BookSleeve or ServiceStack.Redis.
ServiceStack seems a lot more persistent, but I like the pipelining idea provided by BookSleeve.
I have Redis and BookSleeve, and getting and setting strings is easy, but I'm struggling to find examples of setting and getting a collection of objects like my pocos.
public class MyType
{
....
}
IEnumerable<MyType> types = ....
How do I get and install them using BookSleeve?
Thank.
source
share