Re: Fwd: R bindings for Xapian: API modifications
Amanda Jayanetti <[email protected]>
| Newsgroups | gmane.comp.search.xapian.devel |
|---|---|
| Message-ID | <CAEUYEpFAaQ+tw5hAv_UeuJyOnFH1uOq9gOrvzR0+SySL2dSPOA@mail.gmail.com> |
> > >but it looked like > >you were suggesting that (for instance) the ID column in the data > >frame would only be specified by numeric index. > The parameter idField is only used to allow the user to specify a column whose row values will be used as unique identifiers. If it's required to index the idField then it should be separately included in the indexFields list as shown below. indexFields <-list( list(0,"S","id_NUMBER"), list(2,"S","Title"), list(8,"XD","Description")) Note: the structure of arguments to indexFields parameter was slightly changed and follows the format shown above. Best regards, Amanda