I am new to both Redis and BookSleeve. I am evaluating whether I should use BookSleeve or ServiceStack.Redis.
ServiceStack seems much more staightforward but I like the idea of pipelining provided by BookSleeve.
I have Redis and BookSleeve running and getting and setting strings is a snap but I'm struggling to find examples of setting and getting a collection of objects such as my pocos.
public class MyType
{
....
}
IEnumerable<MyType> types = ....
How do I get and set these using BookSleeve?
Thanks.