Hello All,
First of all, I am very new to Drupal, but I really like what I have seen so far. So, what I want may already exist and I just haven't found out about it yet. I want to be able to search the content on my site based on a set of parameters, like for example, looking for all posts with a certain number greater than/less than number N. The "certain number" would have to be previously defined in some way to pick it out from the other content, and there could be multiple parameters to be matched.
I'm guessing that there are two ways to go about this. One is that I would have to make my own custom "add content" system with some way to specify which content is which parameter, and then store the data in custom tables in the database. Then the search feature would be able to find the data because it knows which tables hold which content. This seems like a lot of work, and that it would require more maintenance as drupal grows and changes.
The other method would be to use XML tags in the content around the specific data, so then I could parse it and pull out the data from each posting during the search, then list the matching posts. This seems like a lot less work because I don't have to make my own "add content" system, as the one in drupal works for that now. I also wouldn't have to tinker with the database. The downsides are that as the amount of content grows, it might not scale as well as the database storage method above. Also, I don't know if Drupal will change the content entering system at some point and break the ability to embed XML tags, but I would think not.