gitlinks / github-rank-project

Project to rate quality of github repositories like we vote for cool posts on hacker news
MIT License
12 stars 2 forks source link

Compare DBs to store text #26

Closed osakatand closed 9 years ago

osakatand commented 9 years ago

To store user comments and feedback, compare the performances of several DBs. Neo4j would be the easier but it needs to be validated. There is also MySQL and PostgreSQL.

callicles commented 9 years ago

http://grokbase.com/t/gg/neo4j/135w1kw5xr/storing-document-text-in-node-property-text-analysis-possible

Looked into that for the graph model and looks like we should not face issues for feedbacks.

callicles commented 9 years ago

@sheymann have you heard about difficulties in storing a lot of text in neo ?

sheymann commented 9 years ago

Yes for long texts, because text blobs are truncated but I don't know the limit. Neo4j is not a document store. It's alright if you have texts such as paragraphs.

osakatand commented 9 years ago

After some quick researches:

In our case the text content is rather short (we could even have a limit in comments and feedbacks) so I think we could for now use Neo4j. We'll make some experiments with the first prototype.

osakatand commented 9 years ago

We'll use Neo4j!