문제

I am thinking of a side-project to create a web-based notes manager. So the primary data is going to be a few lines of characters and i need a persistent backend for this.

I am puzzled if there are any light-weight approach other than databases?

Thanks in advance..

도움이 되었습니까?

해결책

nodejs.org and a nonsql datastorage like mongodb.

Because nodejs.org is in JavaScript that you probably already know, its uber-fast and supports a fast nosql storage mongodb.

Also, serverside-JavaScript the future, yo.

다른 팁

I'd recommend SQLite:

http://www.sqlite.org/

Which is much easier to implement than a full featured DB system and should more than meet your requirements...

You could use plain text files with directories to give you a simple structure, and/or XML files for added structure. Watch out for file locking though.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top