Hi
Let say I have an ecommerce site, and as part of that I need CRUD operation, a quality search faciltiy, and a way to review how the site works, what customers are doing etc.
So do i need different sets of records for all of these?
I started of thinking to only have 1 set and use the crud entities for everything, but the more i look into search facilities the more I realise that there is no way I can use by crud entities for a quality so I have decided to seperate them, now I started on building a fairly minor function however it would be important to monitor what was being added. So should I also have another set of entities for all the analysis data?
Or are my crud entities badly design that i should have thought about this before? I don't think this is the case because of how I want to retain my crud entities regardless of activity but want my search entities to be slick for optimisation.