Playing around with #starman and #dancer2, since apparently no one uses #perlcgi any more.

If anyone can recommend some beginner resources, I'd appreciate it, specifically around form processing and DB interactions.

#perl #selfhosting #selfhosted #webcrafting #webserver

@me Overall the thinking is to keep one persistent process for multiple requests, to avoid all the heavy startup costs for every client request that comes in.

Your modern options are to run something as an httpd itself and just proxy it, or run it as FastCGI. I usually do the latter but they're both basically the same idea, just different in small specific details.

@me I really need to write about how we (still) use #perl and CGI to run our entire web infrastructure for 1000s of daily users.