public object Any(GetRandomKey request)
 {
     return(new GetRandomKeyResponse
     {
         Key = Redis.GetRandomKey()
     });
 }
		public object Any(GetRandomKey request)
		{
			return new GetRandomKeyResponse
			{
				Key = Redis.GetRandomKey()
			};
		}