Skip to content

Commit

Permalink
Stamp 1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomas Vondra committed Dec 22, 2024
1 parent 4355034 commit 7579abb
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "sequential_uuids",
"abstract": "UUID generators with sequential patterns, which helps to reduce random I/O patterns associated with regular entirely-random UUID.",
"description": "Regular random UUIDs are distributed uniformly over the whole range of possible values. This results in poor locality when inserting data into indexes - all index leaf pages are equally likely to be hit, forcing the whole index into memory. With small indexes that's fine, but once the index size exceeds shared buffers (or RAM), the cache hit ratio quickly deteriorates. The main goal of the two generators implemented by this extension, is generating UUIDS in a more sequential pattern, but without reducing the randomness too much (which could increase the probability of collision and predictability of the generated UUIDs). This idea is not new, and is described as",
"version": "1.0.2",
"version": "1.0.3",
"maintainer": "Tomas Vondra <[email protected]>",
"license": "bsd",
"prereqs": {
Expand All @@ -14,9 +14,9 @@
},
"provides": {
"sequential_uuids": {
"file": "sequential_uuids--1.0.1--1.0.2.sql",
"file": "sequential_uuids--1.0.2--1.0.3.sql",
"docfile" : "README.md",
"version": "1.0.2"
"version": "1.0.3"
}
},
"resources": {
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ MODULE_big = sequential_uuids
OBJS = sequential_uuids.o

EXTENSION = sequential_uuids
DATA = sequential_uuids--1.0.1.sql sequential_uuids--1.0.1--1.0.2.sql
DATA = sequential_uuids--1.0.1.sql sequential_uuids--1.0.1--1.0.2.sql sequential_uuids--1.0.2--1.0.3.sql

TESTS = $(wildcard test/sql/*.sql)
REGRESS = $(patsubst test/sql/%.sql,%,$(TESTS))
Expand Down
Empty file.
2 changes: 1 addition & 1 deletion sequential_uuids.control
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# sequential UUID generators
comment = 'generator of sequential UUIDs'
default_version = '1.0.2'
default_version = '1.0.3'
module_pathname = '$libdir/sequential_uuids'
relocatable = true

0 comments on commit 7579abb

Please sign in to comment.