本文整理汇总了C#中PooledSocket.ReadResponse方法的典型用法代码示例。如果您正苦于以下问题:C# PooledSocket.ReadResponse方法的具体用法?C# PooledSocket.ReadResponse怎么用?C# PooledSocket.ReadResponse使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PooledSocket
的用法示例。
在下文中一共展示了PooledSocket.ReadResponse方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: FinishCurrent
public static void FinishCurrent(PooledSocket socket)
{
string response = socket.ReadResponse();
if (String.Compare(response, "END", StringComparison.Ordinal) != 0)
throw new MemcachedClientException("No END was received.");
}
示例2: ReadItem
public static GetResponse ReadItem(PooledSocket socket)
{
string description = socket.ReadResponse();
if (String.Compare(description, "END", StringComparison.Ordinal) == 0)
return null;
if (description.Length < 6 || String.Compare(description, 0, "VALUE ", 0, 6, StringComparison.Ordinal) != 0)
throw new MemcachedClientException("No VALUE response received.\r\n" + description);
ulong cas = 0;
string[] parts = description.Split(' ');
// response is:
// VALUE <key> <flags> <bytes> [<cas unique>]
// 0 1 2 3 4
//
// cas only exists in 1.2.4+
//
if (parts.Length == 5)
{
if (!UInt64.TryParse(parts[4], out cas))
throw new MemcachedClientException("Invalid CAS VALUE received.");
}
else if (parts.Length < 4)
{
throw new MemcachedClientException("Invalid VALUE response received: " + description);
}
ushort flags = UInt16.Parse(parts[2], CultureInfo.InvariantCulture);
int length = Int32.Parse(parts[3], CultureInfo.InvariantCulture);
byte[] allData = new byte[length];
byte[] eod = new byte[2];
socket.Read(allData, 0, length);
socket.Read(eod, 0, 2); // data is terminated by \r\n
GetResponse retval = new GetResponse(parts[1], flags, cas, allData);
if (Log.IsDebugEnabled)
Log.DebugFormat("Received value. Data type: {0}, size: {1}.", retval.Item.Flag, retval.Item.Data.Count);
return retval;
}