Enabling Multiple Sockets
FinnCA
Posts: 11
Is there a way to enable multiple sockets on the spinneret? I am working on a project that is pretty big and the spinneret is taking forever to serve the files. If I could enable all sockets it would really help.
Comments
changing the 0 to 1-3
and create multiple
entries substituting the SocketOpen(0 for SocketOpen(1 through SocketOpen(3 and
W5100.SocketTCPlisten(0) for W5100.SocketTCPlisten(1) through W5100.SocketTCPlisten(3).
Nothing is automatic, you will need to implement what you are hoping to accomplish in code. You will need to place data into each socket independently for it to be sent.
Would one be able to increase transmission speed, say with a repeating AJAX request?
I have this suspicion that utilizing multiple sockets is a daunting task.
Not sure, I'm not well versed in AJAX.
I guess in this specific case it depends on the problem, which FinnCA has described yet.