tags:

views:

62

answers:

3

What is the best opensource java integrated DBMS to store HTML pages? ...In term of performance, scalability, usability and more... thanks to all

+2  A: 

I think any filesystem will beat any DB hands down in terms of ease-of-use, manageability, structuring, etc. Provided you have sane directory layout (which is great for management purposes) scalability and performance should not be a problem. In fact, I'm even tempted to think that performance will be higher compared to that of a DBMS (for instance, your web server can serve HTML pages directly. Most modern filesystems support transactions, so this should not be an issue as well.

Anton Gogolev
A: 

You could store in a file system and use Apache Lucene.

abmv
A: 

Html is tag soup. If you want special support for xml tools like xpath, you can look into databases with xml support, like PostgreSQL and Oracle, and store xhtml in them. If you don't need it, go with the filesystem.

Tobu