@StoneHeart
I would go here with EAV and MVC all the way.
@Bill Karvin
Here are some of the disadvantages of
EAV:
No way to make a column mandatory (equivalent of NOT NULL).
No way to use SQL data types to validate entries.
No way to ensure that attribute names are spelled consistently.
No way to put a foreign key on the values of any given attribute, e.g.
for a lookup table.
All those things that you have mentioned here:
- data validation
- attribute names spelling validation
- mandatory columns/fields
- handling the destruction of dependent attributes
in my opinion don't belong in the database at all because none of databases is capable of handling those interactions and requirements on a proper level as the programming language of the application does.
In my opinion using the database in this way is like using a rock to hammer a nail. You can do it with a rock but aren't you suppose to use the hammer which is more precise and specifically designed for this sort of activity ?
Fetching results in a conventional tabular layout is complex and
expensive, because to get attributes
from multiple rows you need to do JOIN
for each attribute.
This problem can be solved by making few queries on partial data and processing them into tabular layout with your application. Even if you have 600GB of product data you can process it in batches if you require data from every single row in this table.
Going further If you would like to improve the performance of the queries you can select certain operation like for e.g. reporting or global text search and prepare for them index tables which would store required data and would be regenerated periodically, lets say every 30 minutes.
You don't even need to be concerned with the cost of the extra data storage because it gets cheaper and cheaper every day.
If you would still be concerned with the performance of the operations done by the application, you can always use Erlang, C++, Go Language to pre-process the data for you and later on just handle the returned data by the applications code.