Re: [Cppcms-users] C++ Web framework
Brought to you by:
artyom-beilis
From: Artyom B. <art...@ya...> - 2012-10-31 09:32:25
|
----- Original Message ----- > From: Pinakee Biswas <pi...@vv...> > To: 'Artyom Beilis' <art...@ya...>; cpp...@li... > Cc: > Sent: Wednesday, October 31, 2012 11:11 AM > Subject: Re: [Cppcms-users] C++ Web framework > > Hi Artyom, > > Thanks for the prompt response. > > I was in fact looking for a framework to develop http streaming server for > our video portal. I was wondering if CppCMS would be the right choice for > the same. > > Thanks, > Pinakee > First of all you can do it without problems, you can actually use internal HTTP server to do this. In both synchronous and asynchonous manner, you can for example hande several hundreds of simultaniuos connections using asynchronous applications. You can also do it via FastCGI, SCGI or use reverse HTTP Proxy. Of course for static content it would better to use real web server. What I can recommend is to use combination of X-Send-File, X-Send-Range and lighttpd to give lighttpd information about what to send. If you are planning to serve everything via CppCMS HTTP server it is not good idea, but I don't see specific problem in video streaming. Artyom Beilis -------------- CppCMS - C++ Web Framework: http://cppcms.com/ CppDB - C++ SQL Connectivity: http://cppcms.com/sql/cppdb/ |