Re: making tsearch2 dictionaries
От | Ben |
---|---|
Тема | Re: making tsearch2 dictionaries |
Дата | |
Msg-id | 1076956997.20254.104.camel@purple обсуждение исходный текст |
Ответ на | Re: making tsearch2 dictionaries (Oleg Bartunov <oleg@sai.msu.su>) |
Ответы |
Re: making tsearch2 dictionaries
|
Список | pgsql-general |
So I noticed. ;) The dictionary's working, and I'd be happy to expand upon the documentation. Just point me at something to work on. But, like I said, I really want to figure out a way to pipe the output of my dictionary through the another dictionary. If I can't do that, it doesn't seem as useful, because "100" (handled by my dictionary) and "one hundred" (handled by en_stem) currently don't generate the same ts_vector. Once I figure out how to tweak the parser to parse things they way I want, I can expand upon those docs too. Looks like I'm going to need to reach waaaay back into my brain and dust off my flex knowledge for that, though.... On Mon, 2004-02-16 at 10:33, Oleg Bartunov wrote: > btw, Ben, if you get you dictionary working, could you describe process > of developing so other people will appreciate your work. This part of > tsearch2 documentation is very weak. > > Oleg > > On Mon, 16 Feb 2004, Teodor Sigaev wrote: > > > > > > > Ben wrote: > > > Thanks for the replies. Just to clarify what I was doing, quaicode > > > looked something like: > > > > > > phrase = palloc(8); > > > phrase = "foo\0bar\0"; > > > res = palloc(3); > > > res[0] = phrase[0]; > > > res[1] = phrase[5]; > > > res[2] = 0; > > > > > > That crashed. Once I changed it to: > > > > > > res = palloc(3); > > > res[0] = palloc(4); > > > res[0] = "foo\0"; > > > res[1] = palloc(4); > > > res[2] = "bar\0"; > > > res[3] = 0; > > > > > > it worked. > > > > > :) > > I hope you mean: > > res = palloc(3); > > res[0] = palloc(4); > > memcpy(res[0] ,"foo", 4); > > res[1] = palloc(4); > > memcpy(res[1] ,"bar", 4); > > res[2] = 0; > > > > Look at indexes of res. > > > > > > Regards, > Oleg > _____________________________________________________________ > Oleg Bartunov, sci.researcher, hostmaster of AstroNet, > Sternberg Astronomical Institute, Moscow University (Russia) > Internet: oleg@sai.msu.su, http://www.sai.msu.su/~megera/ > phone: +007(095)939-16-83, +007(095)939-23-83
В списке pgsql-general по дате отправления: