I am still working on my filesystem indexer, thanks for all the previous help, Xapian is awesome!<br><br>On to my delimna, I want to index arbitarly long logical paths. And I have run up on the ~240 character term limit way more than once so far.
<br>So I am trying to decide the best way to index path information.<br><br>My ideas are as follows:<br><br>/usr/jarrod/very/long/path/to/a/file.txt<br><br>use prefixes like P000:usr, P001:jarrod, P002:very P003:long . . . you get the idea
<br><br>the other idea is to use positional information using add_posting( usr, 0 ), add_posting( jarrod, 1 ), add_posting( very, 2 ), add_posting( long, 3 )<br><br>which way or which other way would you guys suggestion starting out with?
<br>