|
|
|
|
|
by sedachv
5691 days ago
|
|
"In particular, Hunchentoot's session management capabilities are anemic out of the box." Do you mean user authentication? What would be really nice to have is a user authentication library that offered a generic protocol that could be used with several web servers and persistence mechanisms. "Hunchentoot also doesn't have any built-in capabilities for handling updates to the website's source code." You just load the new code and it works. |
|
No, I mean session management. Example of anemia: it offers no way to back sessions by persistent storage.
You just load the new code and it works.
Really? What about threads that are busy processing requests when you load the new code, which may have different assumptions?
It seems like a better approach would be to queue up incoming requests, wait for existing requests to be handled, reload the code, and then resume processing requests.