Earlier quoted context omitted.
Oh man, this is exactly what I've been looking for for a long time. What a brilliantly simple implementation! FYI: it looks like they have a really generous referral program[1], so post your referral link (shameless example: https://hook.io/christiangenco?s ) and I'll tweet the developer to see if you can get retroactive credit. 1. https://hook.io/referrals
https://webscript.io is also pretty awesome, if you're willing to learn some Lua.
Ask HN: What are the alternatives to Amazon Lambda?
71–78 of 78 posts
Re: Ask HN: What are the alternatives to Amazon Lambda?
#72Earlier quoted context omitted.
As others have said, this is basically what inetd and the likes have been doing for a long time. The reason why it isn't used for heavy services anymore is that every request will spawn a new process, and that's extremely expensive. That's like CGI at the socket level. The natural "solution" you have is to let your process run, and every time a new request comes from the network, it is merely redirected to your proce…
Seems like you could essentially implement an LRU container/process/etc. keepalive on top of and have your machines essentially fully-utilized with minimal latency for services being accessed recently.
Re: Ask HN: What are the alternatives to Amazon Lambda?
#73In a way, Amazon Lambda is just "upload a PHP script to my $3 shared webhost", except: - JavaScript/Java/Python instead of PHP - Can handle gigantic bucketloads of requests per second, transparently If you don't expect to scale super high, and if the actual language isn't sacred to you, then you can get the exact same ease of deployment and a comparably large ecosystem of open source on your favorite el cheapo webhos…
This is where PHP can really shine. I mean, you simply upload a script to a web server and have a new API endpoint...
Re: Ask HN: What are the alternatives to Amazon Lambda?
#74Earlier quoted context omitted.
This is where PHP can really shine. I mean, you simply upload a script to a web server and have a new API endpoint...
You realize that Python, Perl (cgi), and even C, can do the same things? mod_xxxx
I read that PHP was created to be a better Pearl for web-applications, so I guessed that with Pearl it did work the same.
But I had the impression that languages like Python and C were used to directly develop application servers.
Re: Ask HN: What are the alternatives to Amazon Lambda?
#75Earlier quoted context omitted.
This is where PHP can really shine. I mean, you simply upload a script to a web server and have a new API endpoint...
You realize that Python, Perl (cgi), and even C, can do the same things? mod_xxxx
Deploying a python script today means either building a VPS or hunting for a niche provider like webfaction (which will still need you to drop to the shell in most cases anyway). It's another level of skill required.
Re: Ask HN: What are the alternatives to Amazon Lambda?
#76The idea is that instead of writing to a particular API it listens for events and mounts a filesystem. Then you just process files in the filesystem as your events and delete them when they are done.
The code can be found on github at: https://github.com/immuta/bakula
Re: Ask HN: What are the alternatives to Amazon Lambda?
#77It is currently a very early alpha. Today I have planned to hide all NATS references to have a very simple and agnostic API for components.