|
|
|
|
|
by branko_d
150 days ago
|
|
> Boolean is rarely enough for real production workloads. You need a 'processing' ... 'retrying'... 'failed' ... If you have more than 2 states, then just use integer instead or boolean. > Saving a few bytes on the index isn't worth losing that observability. Not sure why having a few well-known string values is more "observable" than having a few well-known integer values. Also, it might be worth having better write performance. When PostgreSQL updates a row, it actually creates a new physical row version (for MVCC), so the less it has to copy the better. |
|