码迷,mamicode.com
首页 > 其他好文 > 详细

怎样连接REDIS服务端

时间:2019-03-03 20:57:57      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:comm   class   orm   var   show   client   客户   redis   send   

怎样连接REDIS服务端

1)创建REDIS客户端对象

procedure TForm1.FormCreate(Sender: TObject);
begin
  Redis := TsfRedisClient.Create();
  ConnRedisServer(‘127.0.0.1‘, ‘‘, 6379);
end;

  2)连接并验证

procedure TForm1.ConnRedisServer(ip, password: string; port: Integer);
var
  s: string;
begin
  Redis.Connect(ip, port);
  if password <> ‘‘ then
  begin
    s := Redis.doCommand([‘AUTH‘, password]);
    if s <> ‘OK‘ then
    begin
      ShowMessage(s);
      Exit;
    end;
  end;
end;

  

怎样连接REDIS服务端

标签:comm   class   orm   var   show   client   客户   redis   send   

原文地址:https://www.cnblogs.com/hnxxcxg/p/10467290.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!