webserver - Has any body have any ideas on C++ memory management for apps in TNTWEB web server? -
webserver - Has any body have any ideas on C++ memory management for apps in TNTWEB web server? -
if body uses tntnet web server develop web applications using c++, please share how handle memory management? naive , started exploring it. in advance.
normally, add together objects (no pointers) <%session>
tag in component, in examples of ecpp manpage.
if need able replace these objects throughout 1 session, can utilize std::unique_ptr<class>
or std::shared_ptr<class>
instead, available if compiler supports c++11.
c++ webserver tntnet
Comments
Post a Comment