Yes, I have looked at the tests. My server application may take up to
1000's of simultaneous connections. I am using the Socket class with
ASycronious callbacks to implement an asynchronous server. Thrift uses
TCPListener, and TCPClient, and is creating a new thread for every
connection.
So I would rather handle the sockets myself, and just pass the incoming
data to Thrift for decoding.
Looking at it another way, if i wanted to store thrift data in a
database table, how would I pass the data to and from thrift?
Craig Kimerer wrote:
Have you tried the tests?
If you look in trunk/test/csharp you should see more information. I am not
really sure what you are trying to accomplish but aren't able to.
See http://svn.apache.org/viewvc?view=rev&revision=665633 It provides both a
server and a client.
Craig