By burtadsit on
The only really hazy thing I have with drupal is: how do I use indexes for my data? Ex: I create a fancy new drupal module that has a table. Drupal uses 'nodes' for all access to data. The node table is just a pointer to the node revisions table which contains the actual 'fancy new stuff' data. Where are my index fields?
How does drupal take advantage of indexing? I'm missing something major...
Comments
That didn't come out right
The node table points to the node rev table. My module 'fancy new stuff' defines some new table called 'fancy new stuff'. I do whatever my module does with the 'fancy new stuff' tbl. Where do i relate the node/node rev table with my 'fancy new stuff' tbl?
This is prob the eureka, ahah! thing right?
The taxonomy module?
No, it really can't be that.
I create a taxonomy/vocab over my data. That is the drupal way of getting at sets/subsets of my data in 'fancy new stuff'?