Re: single task postgresql

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: single task postgresql
Дата
Msg-id 18183.1014767036@sss.pgh.pa.us
обсуждение исходный текст
Ответ на single task postgresql  (Oleg Bartunov <oleg@sai.msu.su>)
Ответы Re: single task postgresql  (Oleg Bartunov <oleg@sai.msu.su>)
Список pgsql-hackers
Oleg Bartunov <oleg@sai.msu.su> writes:
> Having frustrated with performance on Windows box I'm wondering if it's
> possible to get postgresql optimized for working without shared memory,
> say in single-task mode. It looks like it's shared memory emulation on disk
> (by cygipc daemon) is responsible for performance degradation.
> In our project we have to use Windows for desktop application and it's
> single task, so we don't need shared memory. In principle, it's possible
> to hack cygipc, so it wouldn't emulate shared memory and address calls
> to normal memory, but I'm wondering if it's possible from postgres side.

As mlw comments, that is probably not really the source of the
performance issue.  However, you should be able to hack it if you
want to check.  A standalone backend just malloc()s what would otherwise
be the shared memory area.  As a first approximation you could just fire
up a standalone backend and see if it seems any faster.
        regards, tom lane


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

Предыдущее
От: Neil Conway
Дата:
Сообщение: Re: eWeek Poll: Which database is most critical to your
Следующее
От: John Gray
Дата:
Сообщение: Re: Refactoring of command.c