11 Feb
2011
11 Feb
'11
6:14 p.m.
On Fri, Feb 11, 2011 at 11:00 AM, Deva <devendra.in@gmail.com> wrote:
In my case i am going to have lots of content types with lots of cck fields. D7 creates new table for each cck field. So while reading a node from database. It is going to do a join. I dont think that is good thing.
Why is a join not a good thing? Unless you have hundreds of thousands of nodes the cost of a join is probably trivial.
That is why i was checking if it is possible to have different table for each content type.
If you really hate using joins you could create a view in the database for each content type -- of course drupal won't use the view but _your_ code could. -Craig