Menu
  • HOME
  • TAGS

ServiceStack Authenticates both iOS Apps when one is logged in

rest,xamarin,servicestack,restful-authentication,servicestack-auth

The issue is because you're using the same Session Cookies with a shared ServiceClient instance which ends up referencing the same Authenticated Users Session. ServiceStack Sessions are only based on the session identifiers (ss-id/ss-pid) specified by the clients cookies, if you use the same cookies you will be referencing the...

Retrieve selection of servicestack redis session objects based on values of properties

redis,servicestack,stackexchange.redis,servicestack.redis,servicestack-auth

Instead of SearchKeys you want to be using the newer Redis Scan API's which let you iterate over keys in a cursor. Redis values are blobbed and not indexed so there's not much opportunity to optimize this. The most efficient way would be to inspect the values using a custom...