I am still working on StackQL -- it's just taking a while to get it going again. Maybe another six to eight weeks (that said, I built the original prototype in a single evening, so I really just need to get off my butt and get working).
That out of the way, the more the merrier, so go for it. I learned a few things building StackQL that I think are worth mentioning:
- Indexing is important, especially the full text indexes on post body and title and on the user's AboutMe text. Using an index vs not makes a huge difference. Unfortunately, no one knows how to use full-text indexes. My StackQL query logs are full of fail from users bungling contains queries. And the brings me to my next point:
- Log every query, and share the log. StackQL got really interesting only after you could share your queries with other users, and the logs are really useful for a whole lot of different things. One thing I'm adding to the next iteration is an field to indicate how long a query took to execute. This will also be useful to indicate whether the query succeeded or generated an error, so you can easily filter out the failed queries.
- Be careful showing the post text in a web page. It's not sanitized, so a
<script> in a post can actually run. I dug up the old code Jeff posted from way back on how he sanitizes StackOverflow and just re-used that.
- Lots of help on the schema. I had pull down menus with field names and table names that would insert them directly in your query, and people still couldn't get it right.
If had it to do again, I'd name it "YADDA" - Yet Another Data Dump Access site.