A: 

Just in case nobody comes with a slick solutions from the depths of the Sharepoint infrastructure:

What would Google Do?

Slice is, Dice it and dump it in a reverse index.

Solr and Lucene offer supreme tools for this. The idea is to cut the DocId's in small pieces and add the location of the document to the bucket for that piece.

Say We have "A real nice document" with Id ABCD123. You would add it to the buckets

ABCD, BCD1, CD12, D123

When searching for a partial ID (+ other data like dates, types, ...) you (well the search engine) creates the union of the buckets + applies additonal constraints.

To make this happen you need to write a spider for the sharepoint server and a routine which makes a record of data elements to be indexed.

Put a nice REST interface in frnt of it (actually SOLR already has that), integrate it in the main sharepoint server, and nobody needs to know there is something else running behind it.

These products can also incrementally update the indexes, so they can be kept up to date.

Peter Tillemans