Re: [PERFORM] EXTERNAL storage and substring on long strings

Поиск
Список
Период
Сортировка
От Matt Clark
Тема Re: [PERFORM] EXTERNAL storage and substring on long strings
Дата
Msg-id OAEAKHEHCMLBLIDGAFELEEDDDGAA.matt@ymogen.net
обсуждение исходный текст
Ответ на Re: [PERFORM] EXTERNAL storage and substring on long strings  (Scott Cain <cain@cshl.org>)
Список pgsql-sql
> > 2. If you want to search for a sequence you'll need to deal with the case
> > where it starts in one chunk and ends in another.
>
> I forgot about searching--I suspect that application is why I faced
> opposition for shredding in my schema development group.  Maybe I should
> push that off to the file system and use grep (or BLAST).  Otherwise, I
> could write a function that would search the chunks first, then after
> failing to find the substring in those, I could start sewing the chunks
> together to look for the query string.  That could get ugly (and
> slow--but if the user knows that and expects it to be slow, I'm ok with
> that).

If you know the max length of the sequences being searched for, and this is much less than the chunk size, then you
couldsimply 
have the chunks overlap by that much, thus guaranteeing every substring will be found in its entirety in at least one
chunk.



В списке pgsql-sql по дате отправления:

Предыдущее
От: Joe Conway
Дата:
Сообщение: Re: [PERFORM] EXTERNAL storage and substring on long strings
Следующее
От: "Shridhar Daithankar"
Дата:
Сообщение: Re: [PERFORM] EXTERNAL storage and substring on long strings