English 中文(简体)
Opinion Mining - What Database Type?
原标题:

I am entering a project to make a Opinion Mining (Data Mining -> Web Mining -> Opinion Mining) to get semantic orientation of the words contained. We will use a crawler to get the pages opinion. Now the question is, what type of DataBase should I use (OO, Relational, hierachycal, etc), is best to use in this type of project. I know this is a specific question, Im not expecting everybodies response but at least someone that already did it, that would help.

Regards!

最佳回答

If you need something large scale and responsive, you would probably need to go for Google s BigTable or something of that nature. At the prototype level, I am sure you can use traditional relational databases, but at certain point you d hit the performance wall. See Brewer s CAP Theorem.

问题回答

From my experience in such kind of scenarios a relational database can serve your purpose pretty well. You need to be extra careful when storing the web content part of it - whether you want to at all use a database to store it or will storing on as simple as a file system can do. BLOBs specially require extra care and they increase your maintenance work.

Also based on the nature of the project, you would certainly be using a lot of already built in components etc. many of which would already support/easy to extend to use a relational DB as a data store.





相关问题
What is this C++ Syntax when declaring a class?

I occasionally run into this type of syntax when looking through open source code and was wondering what it s for, or what it s even called for that matter. I have crawled the internet many a times ...

RoR define meaningful relations between two models

i want to define a many-to-many relation in a rails project. how is the best way to give the individual relations different meanings? +------------+ has many +-------------+ | ...

Opinion Mining - What Database Type?

I am entering a project to make a Opinion Mining (Data Mining -> Web Mining -> Opinion Mining) to get semantic orientation of the words contained. We will use a crawler to get the pages opinion. Now ...

Google Semantic results question

http://www.google.co.uk/search?q=mark+zuckerberg+crunchbase Guys, check out that search, in particular the first result s url. Crunchbase.com > People, and thus the people links to the /people ...

热门标签