We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ffa6bcb commit 202216dCopy full SHA for 202216d
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