Re: How to get good performance for very large lists/sets?

Поиск
Список
Период
Сортировка
От Andy Colson
Тема Re: How to get good performance for very large lists/sets?
Дата
Msg-id 5432F1C0.7070808@squeakycode.net
обсуждение исходный текст
Ответ на Re: How to get good performance for very large lists/sets?  (Andy Colson <andy@squeakycode.net>)
Список pgsql-general
>>
>
>
> Ohhh..
>
> Um, completely left field, but, if your items are sequential in some
> way, maybe there is some gross misuse of ranges you could use?
>
> http://www.postgresql.org/docs/9.2/static/rangetypes.html
>
>
> -Andy
>
>

Another thought, for the case of "find all the items in list A but not
list B things can get very slow "

What if you selected everything from list B created yourself a bloom
filter, then selected everything out of list A.  (Meaning, take it out
of PG and do the compare yourself)

Or, maybe write yourself a stored proc that could do bloom filters.

-Andy


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

Предыдущее
От: Jeff Janes
Дата:
Сообщение: Re: How to get good performance for very large lists/sets?
Следующее
От: Jim Nasby
Дата:
Сообщение: Re: table versioning approach (not auditing)