We recently upgraded the ServiceStack DLLs in our project from version 4.0.38 to version 4.0.52. We are making a call like this:
var clientManager = new BasicRedisClientManager("127.0.0.1");
var client = clientManager.GetClient();
client.Db = 3; // set the DB to 3
var item = DateTime.Now.Ticks.ToString();
client.AddItemToList("test_q", item);
In version 4.0.38 this call correctly resulted in an item in the test_q
list in DB 3 (select 3
). However when we upgraded to version 4.0.52 the setting of the DB to 3 no longer works and the item ends up in the default DB 0.
Is this a bug or is there a change in the API?