Hacker News new | ask | show | jobs
by derefr 3146 days ago
It's funny—you just need a cgi-bin:

1. with 1777 permissions (sticky bit set); and

2. rsynced between a cluster of systems;

and you've got a modern Function-as-a-Service backend.

2 comments

And of course you want to use a flat file database on an NFS server, maybe using some cool flock()s to synchronize writes :)
Only to then realise that naive flock() won't cut it on your basic NFS setup so you resort to bizarre tricks like using hard links to the lock file to emulate proper locking on NFS because they can tell you which of the racing clients won. Those were good times... right?
I think you mean setuid bit. The sticky bit (on binaries) went away when we got VMM/swap.