tsvector term positions and character offset
От | Yoann Moreau |
---|---|
Тема | tsvector term positions and character offset |
Дата | |
Msg-id | 4ECE5E02.2010207@univ-avignon.fr обсуждение исходный текст |
Список | pgsql-hackers |
Hello, I'm working on text data, actually some tsvectors of the text. The tsvector provides terms and positions for each term, I would need to map these positions to the character offsets of the terms in the original text. 'This is an example text for example' tsvector -> 'an':3 'exampl':4,7 'for':6 'is':2 'text':5 'this':1 What I need would be for the first term 'This' : 0, or the term 'example' : 11,28. I've searched for anything able to do that without success (also asked on general pg list). As the offset positions seem to be not stored or used at any time in the fulltext functions, the only way I figured out would be to parse the text again counting terms AND characters read. I coded this function as a very very dirty external C function, with many tsearch code copied because it can't be used outside of the source file. My questions 1) Is there any other way to achieve what I need ? 2) Could my need be part of future more general functionality of the tsearch module ? If not, any suggestion about the way to code it as clean and robust as possible ? Regards, Yoann Moreau
В списке pgsql-hackers по дате отправления: