Net.Sockets.TcpListener
-
Is socket fast? Process we have is just simple data lock. A main database which contains 10,000 - 20,000 records (created daily if MDB used) that will access the server. There will be 100+ clients that will request what data they will access/process then send the keyed data to server and the server will save that record. Socket is a very nice way to do this but I don't know if it can handle massive request. Server is only 8G RAM with I3 processor.
- Be who you are and say what you feel because those who mind don't matter and those who matter don't mind. - Most of the problem in your life are due to two reasons: you act without thinking, or think without acting.
-
Is socket fast? Process we have is just simple data lock. A main database which contains 10,000 - 20,000 records (created daily if MDB used) that will access the server. There will be 100+ clients that will request what data they will access/process then send the keyed data to server and the server will save that record. Socket is a very nice way to do this but I don't know if it can handle massive request. Server is only 8G RAM with I3 processor.
- Be who you are and say what you feel because those who mind don't matter and those who matter don't mind. - Most of the problem in your life are due to two reasons: you act without thinking, or think without acting.
-
Is socket fast? Process we have is just simple data lock. A main database which contains 10,000 - 20,000 records (created daily if MDB used) that will access the server. There will be 100+ clients that will request what data they will access/process then send the keyed data to server and the server will save that record. Socket is a very nice way to do this but I don't know if it can handle massive request. Server is only 8G RAM with I3 processor.
- Be who you are and say what you feel because those who mind don't matter and those who matter don't mind. - Most of the problem in your life are due to two reasons: you act without thinking, or think without acting.
Sockets, with properly written code of course, is the fastest you're going to get. The real bottleneck is going to be your database server hardware, database structure, quality of your queries and whatever code you write to send data back to the clients.
A guide to posting questions on CodeProject
Click this: Asking questions is a skill. Seriously, do it.
Dave Kreskowiak