Ask HN: Is it possible to have forum type community running without a database?
31–40 of 66 posts
Re: Ask HN: Is it possible to have forum type community running without a database?
#32Re: Ask HN: Is it possible to have forum type community running without a database?
#33http://freecode.com/projects/simpleforum
Unfortunately it doesn't seem to be in active development any more.
Re: Ask HN: Is it possible to have forum type community running without a database?
#34Re: Ask HN: Is it possible to have forum type community running without a database?
#35Re: Ask HN: Is it possible to have forum type community running without a database?
#36Hi there, you ask interesting questions. I have two things for you that aren't exactly what you're looking for, but they are definitely relevant. First of all, a while ago I made a serverless chat for in your browser. It's just a proof of concept, it does work however. There will be nobody there, but you can test it by opening two browser tabs or using a second device. It works in the same way that Skype works, peer…
the goddess looks at this creation and she is happy.
Re: Ask HN: Is it possible to have forum type community running without a database?
#37Have a look at 4chan - once the thread is done, it's gone, no need for db for that and the community is still there.
Re: Ask HN: Is it possible to have forum type community running without a database?
#38People (including me) are thinking about and working on personally owned and hosted data. Your forum posts live in _your_ cloud, and in a way that the features as brickcap describes are achievable.
Re: Ask HN: Is it possible to have forum type community running without a database?
#39If you want to learn a lot about development, write a lot of code, you can use flat files and treat them as a small database. Implement simple SQL analogues of WHERE, etc. It could definitely be fun to implement! A lot of educational value. You would learn more about designing APIs consumed by other applications, etc.
But if you just want something that would run on r-pi, you would be better off by using a standard database. Some of them are around for over a decade, written in C and thousands of men hours were spent on optimizing them. As long as you are not doing something a bit crazy (e.g. 3 fields in WHERE statement, non of them are indices), you will be just fine.
Re: Ask HN: Is it possible to have forum type community running without a database?
#40Have a look at 4chan - once the thread is done, it's gone, no need for db for that and the community is still there.
On the other hand the textboards do appear to not use a traditional RDBMS - they were running a modified version of Shiichan (http://wakaba.c3.cx/shii/shiichan ); Kareha (http://wakaba.c3.cx/s/web/wakaba_kareha ) is another popular textboard script that doesn't need a database.