[Memcacheddotnet-devel] General Questions
Status: Beta
Brought to you by:
timiscool999
|
From: Josef F. <car...@gm...> - 2007-07-06 12:21:32
|
I've been using the client for a couple of months now and have encountered
some issues that lead me to wonder if I'm implementing the client wrong.
One issue is in the SockPoolIO.Start method. I was getting fails that I
coded around using:
public void Start()
{
_stopThread = false;
//_thread.Start();
try
{
_thread.Start();
}
catch
{
_thread = new Thread(new ThreadStart(Maintain));
_thread.Start();
}
}
Has anyone else seen this behavior?
Josef
|