StackExchange.Redis.RedisConnectionException:无法连接到Redis服务器。连接超时

时间:2018-10-19 06:53:58

标签: c# redis stackexchange.redis

随机出现错误 StackExchange.Redis.RedisConnectionException:无法连接到Redis服务器。 ConnectTimeout

我使用StackExchange.Redis.StrongName.dll版本1.2.6。这是用于连接redis服务器的代码

void Update ()
{
    if (Input.GetMouseButtonDown (0)) {
        RaycastHit2D hit = Physics2D.Raycast (Camera.main.ScreenToWorldPoint 
        (Input.mousePosition), Vector2.zero);
    }
    if (hit.collider != null) {
       if (hit.collider.tag == "coin") {
           Instantiate (Resources.Load ("Pickupeffect"));
           Destroy (hit.collider.gameObject);
       }
    }
}

大部分时间都可以正常工作,但是一天中我随机出现2到3次此连接错误。

0 个答案:

没有答案