Re: [DOCS] CREATE CUSTOM TEXT SEARCH PARSER

2010-11-02 Thread Katharina kuhn
Thank you Kevin! I'll look at the contrib/test_parser directory. Any way, I agree with you. I actually made a pl/pgsql function for pre-parsing documents based on my own needs, and cast the results to a tsvector normally. It works fine enough! Katharina On Tue, Nov 2, 2010 at 2:58 PM, Kevin Grittn

Re: [DOCS] CREATE CUSTOM TEXT SEARCH PARSER

2010-11-02 Thread Kevin Grittner
Katharina kuhn wrote: > I'd like to build a custom text search parser and then use it > within a custom text search configuration. > It would be great if you could give us an example showing how to > build a custom parser, including examples of start, gettoken and > end functions. You might wa

[DOCS] CREATE CUSTOM TEXT SEARCH PARSER

2010-10-26 Thread Katharina kuhn
Hi, I'd like to build a custom text search parser and then use it within a custom text search configuration. It would be great if you could give us an example showing how to build a custom parser, including examples of start, gettoken and end functions. It would be even greater if one could add cus