Delphi连接到Azure Redis缓存

时间:2019-01-04 03:43:20

标签: azure delphi redis pascal azure-redis-cache

我已成功安装Azure Redis服务器(遵循此步骤[https://docs.microsoft.com/en-us/azure/azure-cache-for-redis/cache-dotnet-how-to-use-azure-redis-cache][1])。我的问题是如何将Delphi应用程序连接到Redis的Azure缓存?我使用Delphi XE构建VCL应用程序。

1 个答案:

答案 0 :(得分:0)

我使用了redis AUTH 命令(请参阅https://redis.io/commands/auth),该命令具有Azure上访问键的值。

 IdTCPClient1.Host := 'project.redis.cache.windows.net';
 IdTCPClient1.Port := 6379;
 IdTCPClient1.Connect;
 IdTCPClient1.Socket.WriteLn('auth authentication=youraccesskey');