-
Notifications
You must be signed in to change notification settings - Fork 92
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Transaction API specification #4
Comments
Part-4 draft is looking good. It may tike a little time before it is adopted but it should not change much according to comments in this issue. opengeospatial/ogcapi-features#366 I would love to see a pg_featureserv implementation. starting with create-replace-delete requirement class. ideally, this implementation should not introduce new dependencies and rely on postgres/postgis to take care of everything. It must stay aligned with the philosophy behind pg_featureaerv documented here: https://access.crunchydata.com/documentation/pg_featureserv/1.2.0/introduction/ |
I am analyzing how to implement optimistic locking. ETags is fairly easy to implement using an MD5 hash for the feature. Implemening Last-Modified require enabling track_commit_timestamp on the database and querying pg_xact_commit_timestamp(xmin) for one feature. The specification mentions "A requirements class is specified for each field, because the two options have different characteristics and API providers need to decide which option they can support." I believe ETags is they ideal choice for pg_featureserv. |
OGC API does not yet define transactions semantics.
The text was updated successfully, but these errors were encountered: