I am in an early stage of new project design and I contemplating with which datastore/s to use.
The project is a web platform which can be described as a large social on-line books library, book composed from pieces which will be edited by the users, each piece can be text,audio,video..).
As you already figuring there are many relationships which should be considered,concepts like follows,likes,tags,categories and customization algorithms based on these,correct me if I wrong that kind of data is called semi-structured data, The structured for the relationships between the entities ( Profiles , Pieces , Books ..) and the unstructured will be referring to the pieces content.
I had a great experience lately on other project with NoSQL MongoDB so I am trying to stick with NoSQL datastore solution if possible, The thing is I don't think mongo is built for that kind of data modeling because of all these relationships.
After few hours of research storing these relationships in graph based DB like Neo4J sounds like great thing to do, but regarding the unstructured data.. I don't know.
Does Neo4J will scale alone with all that massive amount of unstructured data with no sharding?
Is the right approach Is to implement a cross-data-store solution with mix of Mongo(unstructured) and Neo4J(relationships) connected by domain object ids? what are the advantages/disadvantages in that kind of approach?
I am java developer so naturally I am working with Spring :), I know that spring not provide A cross-store data access between few NoSQL datastores out-of-the-box.
Is that mean that if I will choose the cross solution I will have to hold domain entities for each data-store?
I will appreciate descriptive answer I am kind of confused with all that NoSQL gold rush, Thanks.