51
3
powa-archivist 5.0.3 is out! (www.postgresql.org)
52
6
pg_dumpbinary v2.20 released (www.postgresql.org)
53
13
54
4
55
4
Pgpool-II 4.6.2 released (www.postgresql.org)
56
3
pgtt v4.3 released (www.postgresql.org)
57
3
pgAdmin 4 v9.4 Released (www.postgresql.org)
58
2
59
7
submitted 1 year ago by neme@lemm.ee to c/postgresql@programming.dev
60
9
submitted 1 year ago by neme@lemm.ee to c/postgresql@programming.dev
61
8
submitted 1 year ago by neme@lemm.ee to c/postgresql@programming.dev
62
11
pgAdmin 4 v9.2 Released (www.postgresql.org)
submitted 1 year ago by neme@lemm.ee to c/postgresql@programming.dev
63
12
submitted 2 years ago by neme@lemm.ee to c/postgresql@programming.dev
64
9

I came across this blog and thought it was a nice demonstration of the backup, recovery and migration options in CNPG, and the cloud-native way of working in a tough situation: treat your servers as cattle, not as pets. Spin up a new container and kill the problematic old one.

65
6

I'm doing an extension that creates a pool of named background workers. Happy to hear any feedback on this.

CREATE EXTENSION pg_worker_pool;
CALL worker_pool.submit('foo', 'create index myindex_1 on my_big_table (id)');
CALL worker_pool.submit('foo', 'create index myindex_1 on my_big_table (name)');
CALL worker_pool.submit('bar', 'create index otherindex_2 on other_big_table (author)');
CALL worker_pool.submit('bar', 'create index otherindex_2 on other_big_table (title)');

This will start two background workers, foo and bar. foo will create an indices on table my_big_table and bar on table other_big_table. foo and bar will run independently of each other, but all indices submitted to the same worker will be created in order.

66
10

What are your experiences with @postgresql jsonb columns as document store?

Is it easy to use from a Spring App? How fast is it? What are its limitations?

#postgresql #json #databases

67
3
68
15
PostgreSQL 17 Released! (www.postgresql.org)
69
5
70
12
submitted 2 years ago* (last edited 2 years ago) by jnovinger@programming.dev to c/postgresql@programming.dev
71
23
72
14
73
6
74
18
75
6

Prolog language for PostgreSQL

This is a PostgreSQL extension that allows writing stored procedures in Prolog.

This embeds Scryer Prolog into a PostgreSQL extension.

Proof of concept! Not ready for any actual use.

view more: ‹ prev next ›

PostgreSQL

2205 readers
1 users here now

The world's most advanced open source relational database

Project
Events
Podcasts
Related Fediverse communities

founded 3 years ago
MODERATORS