Next CppCMS Major Feature Poll
8/10/20, by artyom ;
Posted in:
Progress;
0 comments
I'm looking into implementing next major feature that I can complete with reasonable effort. I have a list of following topics:
- HTTP/1.1 support - it would allow keep alive support and better performance overall for multiple requests. It would allow future implementation of web sockets.
- Multiple-Event-Loop support - today there is only 1 event loop for the service and it can be a bottleneck for small requests on systems with high core count.
- SSL support - for embedded systems that need proper web server.
- C++11 cleanup - replace all booster primitives that exist in C++11
with standard (
shared_ptr
,thread
,mutex
, etc) provide move constructors for many objects, replaceauto_ptr
byunique_ptr
.
Feel free to suggest other ideas that you can think of that would be beneficial.
Comment below or sent e-mail to cppcms-users mailing list.
Add Comment:
You must enable JavaScript in order to post comments.