Ignore:
Timestamp:
2008-07-17T17:12:19+12:00 (16 years ago)
Author:
mdewsnip
Message:

Search result document numbers are now represented with a text_t rather than an int, in preparation for changing Lucene to return the Greenstone document OIDs directly rather than looking them up as a separate step. This is better for efficiency and is also required for incremental building.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • gsdl/trunk/src/colservr/queryinfo.h

    r12868 r16445  
    143143};
    144144
    145 typedef map<int, docresultclass, ltint> docresultmap;
     145typedef map<text_t, docresultclass, lttext_t> docresultmap;
    146146
    147147
     
    151151struct docresultsclass {
    152152  docresultmap docset;
    153   vector<int> docorder;
     153  vector<text_t> docorder;
    154154
    155155  docresultsclass ();
Note: See TracChangeset for help on using the changeset viewer.