Implementing an Index Access Method in PG 8.4

From: Carsten Kropf <ckropf2(at)fh-hof(dot)de>
To: pgsql-general(at)postgresql(dot)org
Subject: Implementing an Index Access Method in PG 8.4
Date: 2010-02-23 10:00:46
Message-ID: 3E186945-5F7C-4DCB-B66B-0D42F31F58DE@fh-hof.de
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Hi *,
I have a question according to the implementation of a new index access method in Postgres. Is it necessary to implement a new resource manager for XLog when I am trying to achieve a stable new index access method?
I actually don't know how to register a new ressource manager (if I would have to). Is there a way to bypass this using some kind of "generic" resource manager that needs some kind of standardized input values, or do I have to do this manually?
Actually my main problem here is, that I am just doing the implementation of some examples of index structures, just basic things to test what is to be done when implementing the stuff. However I found, that all the currently available structures in the source distribution do have their own recovery functionality using own resource managers. Thus I thought that I will probably have to add support for this, too, but I don't know exactly if it is really necessary (and, as I already mentioned, how this would be possible).

Best regards,
Carsten Kropf

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Greg Stark 2010-02-23 10:17:01 Re: Sorting performance vs. MySQL
Previous Message dipti shah 2010-02-23 09:58:16 Re: SET Role doesn't work from Security Definer Function...