Обсуждение: how pgsql writes tuples on disk

Поиск
Список
Период
Сортировка

how pgsql writes tuples on disk

От
"jorge alberto"
Дата:
Hello!
 
I wanna know where can I find the source code that writes tuples on disk, right now I'm reading about object persistence and I wanna see how it is done in pgsql
 
I hope you can help me
regards
jorge

Re: how pgsql writes tuples on disk

От
Zdenek Kotala
Дата:
See http://www.postgresql.org/docs/8.2/interactive/storage.html

in code it is for example in

src/backend/storage/...
src/backend/utils/adt/...
src/backend/access/...

and very good also is
src/include/stroage/bufpage.h


I hope it helps
    Zdenek

jorge alberto wrote:
> Hello!
>  
> I wanna know where can I find the source code that writes tuples on 
> disk, right now I'm reading about object persistence and I wanna see how 
> it is done in pgsql
>  
> I hope you can help me
> regards
> jorge