Hacker News new | past | comments | ask | show | jobs | submit login

I have no idea how neocities is implemented, but my first thought as far as implementing something like that wouldn't be to give users actual filesystem access, but rather to put everything in an object store. Typically that'd be flat until you bolt on something to simulate a hierarchy.



If you're doing that you can allow object names to have "/" and get directory simulation for free.


That would require more resources on the server side than simply storing flat files in directories.


and way less effort to cluster or shard


Cluster, I can understand, but why shard?

I've run forums even on rickety DIY PHP + Postgres that's held up very nicely to several hundred logins and even more sessions per day on very modest hardware (1.5Ghz Core 2 duo, 2Gb memory).

It doesn't take a boatload of resources for a simple login and static content if it's just static content. Sites can be separated (or "sharded" if you like that term) on Nginx with very little effort for static content.

E.G. https://gist.github.com/perusio/2154289

There are more elegant solutions for that which still don't require blob objects.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: