Skip to content

General Guidance

Primary Keys vs. Surrogate Keys for external consumption

Section titled “Primary Keys vs. Surrogate Keys for external consumption”

Good security practice for modern apps that will allow record IDs to be shared externally is to either have UUID or shortkey (see below) non-serial primary keys. If you use a serial type primary key, never send the PK out for external consumption - always use surrogate keys via uuid-ossp or similar. If you use a serial PK and share the ID externally then it will be possible for external users to “guess” IDs since the PKs would adjacent numerically.

Real-time Information via PostgreSQL Notify

Section titled “Real-time Information via PostgreSQL Notify”

Postgres Notify for Real Time Dashboards provides a great description of how to “push” updates to clients.