You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For now I'm using a modified version of gritty, but I have a lot of problems with it:
it's slow
it's written in NodeJS
each client spawn a new lisp-chat process as terminal client with 100MB at cost (my server only have 500mb of RAM)
it's buggy as well
... this form is to narrow to write all the problems
The main reason for being slow it's because all the data, at each keystroke, is sent by TCP sockets to server. The ideal is only send a new request when is really necessary (RET pressed).
Would nice creating a client-side based solution since I don't have much resources to handling so heavy sessions on server. A nice interface would be something like http://hack.chat, as ideal written well in Common Lisp (parenscript), but it's not necessary for now.
The text was updated successfully, but these errors were encountered:
For now I'm using a modified version of gritty, but I have a lot of problems with it:
The main reason for being slow it's because all the data, at each keystroke, is sent by TCP sockets to server. The ideal is only send a new request when is really necessary (RET pressed).
Would nice creating a client-side based solution since I don't have much resources to handling so heavy sessions on server. A nice interface would be something like http://hack.chat, as ideal written well in Common Lisp (parenscript), but it's not necessary for now.
The text was updated successfully, but these errors were encountered: