We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ffa6bcb + 202216d commit 52aa5b1Copy full SHA for 52aa5b1
Enyim.Caching/Memcached/Protocol/Text/GetOperation.cs
@@ -12,7 +12,7 @@ internal GetOperation(string key) : base(key) { }
12
13
protected internal override System.Collections.Generic.IList<System.ArraySegment<byte>> GetBuffer()
14
{
15
- var command = "gets " + this.Key + TextSocketHelper.CommandTerminator;
+ var command = "get " + this.Key + TextSocketHelper.CommandTerminator;
16
17
return TextSocketHelper.GetCommandBuffer(command);
18
}
0 commit comments