We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I noticed, that each connected client consumes 2 threads. One thread is created by Hunchentoot and other by JSONRPC:
#<SB-THREAD:THREAD "jsonrpc/transport/websocket processing" RUNNING {1012704EF3}> #<SB-THREAD:THREAD "hunchentoot-worker-127.0.0.1:54832" RUNNING {10124993B3}>
it will relatively easy to do DoS attack on such server by just creating a few thousands connections.
Is there a way to not create new threads or use some thread pool? Or at least to respond to client call and close the connection?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I noticed, that each connected client consumes 2 threads. One thread is created by Hunchentoot and other by JSONRPC:
it will relatively easy to do DoS attack on such server by just creating a few thousands connections.
Is there a way to not create new threads or use some thread pool? Or at least to respond to client call and close the connection?
The text was updated successfully, but these errors were encountered: