Damir Logar
unread,May 28, 2011, 1:20:00 PM5/28/11Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to ServiceStack .NET Open Source REST Web Services Framework
I'm moving all serial calls to pipeline due to latency problems. I
can't get to work GetValuesMap and GetAllEntries in QueueCommand.
trans.QueueCommand(r => r.GetValuesMap(keystoget), nums =>
getvalueresultmap = nums);
trans.QueueCommand(r => r.GetAllEntriesFromHash("hashid1"), nums =>
getvalueresultmap = nums);
Errors I get in compile time:
Error 4 Cannot convert lambda expression to delegate type
'System.Func<ServiceStack.Redis.IRedisClient,int>' because some of the
return types in the block are not implicitly convertible to the
delegate return type
Error 5 Cannot implicitly convert type
'System.Collections.Generic.Dictionary<string,string>' to 'int'
Error 6 Delegate 'System.Action' does not take 1 arguments
Are there any workarounds that I'm missing?