https://github.com/dylex/pguri
Simple PostgreSQL URI type for indexing and searching URI
https://github.com/dylex/pguri
postgresql uri
Last synced: about 1 month ago
JSON representation
Simple PostgreSQL URI type for indexing and searching URI
- Host: GitHub
- URL: https://github.com/dylex/pguri
- Owner: dylex
- License: other
- Created: 2018-04-08T15:23:08.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2022-12-24T22:21:58.000Z (over 3 years ago)
- Last Synced: 2025-01-23T19:14:39.669Z (over 1 year ago)
- Topics: postgresql, uri
- Language: C
- Size: 35.2 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- License: LICENSE
Awesome Lists containing this project
README
A simple PostgreSQL URI type similar to http://pgfoundry.org/projects/uri that
allows efficient indexing and searching of URIs. It was designed for storing
web browsing history and policies. It breaks URI strings up into their scheme,
domain (itself broken up by dots and reversed for the sake of sorting), port,
and path. URIs can be partial, with any part missing, and defines ordering and
containment relations, such that 'foo.com' @> 'http://www.foo.com/path'.