Re: [SQL] SQL Query Performance - what gives?

Поиск
Список
Период
Сортировка
От Pierre Frédéric Caillaud
Тема Re: [SQL] SQL Query Performance - what gives?
Дата
Msg-id op.uywb8qyucke6l8@soyouz
обсуждение исходный текст
Ответ на Re: [SQL] SQL Query Performance - what gives?  (Karl Denninger <karl@denninger.net>)
Список pgsql-performance
> The bitmask allows the setting of multiple permissions but the table
> definition doesn't have to change (well, so long as the bits fit into a
> word!)  Finally, this is a message forum - the actual code itself is
> template-driven and the bitmask permission structure is ALL OVER the
> templates; getting that out of there would be a really nasty rewrite,
> not to mention breaking the user (non-developer, but owner)
> extensibility of the current structure.
>
> Is there a way to TELL the planner how to deal with this, even if it
> makes the SQL non-portable or is a hack on the source mandatory?

    You could use an integer array instead of a bit mask, make a gist index
on it, and instead of doing "mask & xxx" do "array contains xxx", which is
indexable with gist. The idea is that it can get much better row
estimation. Instead of 1,2,3, you can use 1,2,4,8, etc if you like. you'd
probably need a function to convert a bitmask into ints and another to do
the conversion back, so the rest of your app gets the expected bitmasks.
Or add a bitmask type to postgres with ptoper statistics...

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

Предыдущее
От: Karl Denninger
Дата:
Сообщение: Re: [SQL] SQL Query Performance - what gives?
Следующее
От: Ivan Voras
Дата:
Сообщение: Re: SQL Query Performance - what gives?