Re: web development in D programming

2011-11-26 Thread Andrew Gough
On Wed, 09 Nov 2011 03:22:37 +0100 bioinfornatics wrote: > Dear, > After read this thread: > http://www.digitalmars.com/d/archives/digitalmars/D/learn/Web_Development_27414.html > and this one: > http://www.digitalmars.com/d/archives/digitalmars/D/learn/How_To_Dynamic_Web_Rendering_26770.html >

Re: web development in D programming

2011-11-10 Thread Kapps
Speaking only for lighttpd, it didn't work too well for me when I tried it (using FCGI). First off, it does not seem to support multiplexing. As well as that, it had no way I could figure out for handling concurrent requests. So, the way every single request goes is: Lighttpd opens a connectio

Re: web development in D programming

2011-11-09 Thread Adam Ruppe
Dejan Lekic wrote: > Your code is usable, but not production-ready. What is lacking there that you need? I know a few parts of it aren't ideal, but I haven't found them to be big problems in practice (which is why I haven't changed it yet!)

Re: web development in D programming

2011-11-09 Thread Adam Ruppe
Note that the new location for my code is on github: https://github.com/adamdruppe/misc-stuff-including-D-programming-language-web-stuff What disappointed you, by the way?

Re: web development in D programming

2011-11-09 Thread Andrea Fontana
SCGI is a lot easier to implement than FASTCGI and is well-supported too from webservers. I've just developed a SCGI web-service in D over lighttpd. Il giorno mer, 09/11/2011 alle 11.58 +, Dejan Lekic ha scritto: > bioinfornatics wrote: > > > > > I am a little disapointed, so if you have

Re: web development in D programming

2011-11-09 Thread Trass3r
I am a little disapointed, so if you have many request for a web page this lib http://arsdnet.net/dcode/ is usable or not ? If they are any other method to do a web application in D2 programming do not hesitate and tell to me which lib used. There's also a project named Serenity http://www.dig

Re: web development in D programming

2011-11-09 Thread simendsjo
On 09.11.2011 12:58, Dejan Lekic wrote: bioinfornatics wrote: I am a little disapointed, so if you have many request for a web page this lib http://arsdnet.net/dcode/ is usable or not ? I am developing an implementation of the FastCGI protocol (http://www.fastcgi.com) in D2 with the main g

Re: web development in D programming

2011-11-09 Thread Dejan Lekic
bioinfornatics wrote: > > I am a little disapointed, so if you have many request for a web page > this lib http://arsdnet.net/dcode/ is usable or not ? > I am developing an implementation of the FastCGI protocol (http://www.fastcgi.com) in D2 with the main goal go have multiplexing support.