Re: [Cppcms-users] C++ Web framework
Brought to you by:
artyom-beilis
From: Shiv S. D. <shi...@gm...> - 2012-10-31 09:22:12
|
A video streaming server will be bound by high disk I/O because certainly you cannot keep all the data in memory. The second aspect is whether you want users to upload their video. If yes then what formats will you support? If you support multiple formats and stream one then you need to convert them. Now conversion needs lots of CPU and RAM so certainly CppCMS seems an excellent choice in this case. On Wed, Oct 31, 2012 at 2:46 PM, 陈抒 <csf...@gm...> wrote: > Do you mean you want to transfer the byte array(BLOB) via HTTP? > I just tried google protocolBuffer with CppCMS. > It worked. > > > 陈抒 > Best regards > http://blog.csdn.net/sheismylife > > > > On Wed, Oct 31, 2012 at 5:11 PM, Pinakee Biswas <pi...@vv...>wrote: > >> 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 >> >> >> >> -----Original Message----- >> From: Artyom Beilis [mailto:art...@ya...] >> Sent: 31 October 2012 14:20 >> To: cpp...@li... >> Subject: Re: [Cppcms-users] C++ Web framework >> >> >> >> >> >________________________________ >> > From: Pinakee Biswas <pi...@vv...> >> >To: cpp...@li... >> > >> >Hi, >> > >> >I have been a C/C++ developer for more than a decade and it is really >> great >> to see a web framework in C++. We are building a http based streaming >> server >> and I have been searching for a high performing web server/framework >> supporting C/C++ and I came across cppcms. >> >I have following queries: >> > >> >> >1. Is this just a web framework or does it also come with >> > a web server? I mean do we need a separate web server to process http? >> >> >> It comes with built-in web server that is mostly designed for embedded >> applications and debugging purposes. >> >> For high load web sites and web sites in general it is recommended to >> deploy >> the CppCMS application via FastCGI or SCGI behind web servers like >> Lighttpd >> or Nginx. >> >> >> >> >2. How is this compared to high performing web servers like Nginx? >> >> In terms of serving static files or being feature rich obviously nginx and >> lighttpd are way better. >> >> In terms of the application of course for "hello world" like applications >> the internal web server would eliminate an additional IPC and be faster >> but >> in real world the are no significant drawbacks running behind >> >> full-featured web servers. >> >> In fact all production deployments of web sites running CppCMS I'm aware >> of >> run behind lighttpd or nginx. >> >> >> >> >3. Has this been deployed anywhere for a high performing web with >> live traffic? >> > >> >> First of all: >> >> >> http://cppcms.com/wikipp/en/page/who_uses >> >> >> One of the systems that I developed for one of my clients provides >> services >> for one of the leaning news web site on some local market. >> >> >> I can't provide more details right now, but very >> >> soon much more information will be available publicly. >> >> >> >> >We would really appreciate if you could please let us know about the >> above. >> > >> >Looking forward to your response and support...> >> >> >Thanks, >> >Pinakee Biswas >> >Director & CTO >> > >> >Just watch it ! >> > >> >> Regards, >> >> >> Artyom Beilis >> -------------- >> CppCMS - C++ Web Framework: http://cppcms.com/ CppDB - C++ SQL >> Connectivity: http://cppcms.com/sql/cppdb/ >> >> >> ---------------------------------------------------------------------------- >> -- >> Everyone hates slow websites. So do we. >> Make your web apps faster with AppDynamics Download AppDynamics Lite for >> free today: >> http://p.sf.net/sfu/appdyn_sfd2d_oct >> _______________________________________________ >> Cppcms-users mailing list >> Cpp...@li... >> https://lists.sourceforge.net/lists/listinfo/cppcms-users >> >> >> >> ------------------------------------------------------------------------------ >> Everyone hates slow websites. So do we. >> Make your web apps faster with AppDynamics >> Download AppDynamics Lite for free today: >> http://p.sf.net/sfu/appdyn_sfd2d_oct >> _______________________________________________ >> Cppcms-users mailing list >> Cpp...@li... >> https://lists.sourceforge.net/lists/listinfo/cppcms-users >> > > > > ------------------------------------------------------------------------------ > Everyone hates slow websites. So do we. > Make your web apps faster with AppDynamics > Download AppDynamics Lite for free today: > http://p.sf.net/sfu/appdyn_sfd2d_oct > _______________________________________________ > Cppcms-users mailing list > Cpp...@li... > https://lists.sourceforge.net/lists/listinfo/cppcms-users > > -- Best regards, Shiv Shankar Dayal |