SortedSets を削除しようとしている約 336 個のキーがあります。Ubuntuserver で Redis を使用して BookSleeve を C3 クライアントとして使用しています。 以下のコードは機能しますが、Console.WriteLine を削除すると、約 100 個のキーがランダムに削除されません。エラーは発生しません。redis サーバー側で Montior をオンにすると、C# 側から削除されていない ZREM ステートメントが送信されていません。コメントアウトされているときではなく、Console.Writelineが存在するときになぜ機能するのでしょうか。何か案は?
public virtual void RemoveKey(string item, string id)
{
for (int i = 1; i <= item.Length; i++)
{
Console.WriteLine(PrefixKey + item.Substring(0, i));
_redisClient.SortedSets.Remove(_database,
PrefixKey + item.Substring(0, i), id);
}
}
クラスがあります
public class RedisRepository
{
protected static RedisConnection _redisClient;
protected int _database;
protected bool disposed;
public RedisRepository(int database)
{
string server = ConfigurationManager.AppSettings["redis.server"];
int port = Convert.ToInt32(ConfigurationManager.AppSettings["redis.port"]);
string password = ConfigurationManager.AppSettings["redis.password"];
_redisClient = new RedisConnection(server, port, -1, password);
_database = database;
_redisClient.Open();
}
~RedisRepository()
{
this.Dispose(false);
}
public void Dispose()
{
this.Dispose(true);
GC.SuppressFinalize(this);
}
protected virtual void Dispose(bool disposing)
{
if (!disposed)
{
if (disposing)
{
_redisClient.CloseAsync(false);
_redisClient.Dispose();
}
// Dispose unmanaged resources here.
}
disposed = true;
}
}
上記の RedisRpository クラスを、その _redisClient オブジェクトを使用する別のクラスに継承しました。