The future of hardware is better software
anneal.co.uk4 pointsby samgaw0 comments
- lz4
- zstd
# Building git clone https://github.com/hydradatabase/hydra
cd hydra/columnar
./configure
make
make install
# Install CREATE EXTENSION IF NOT EXISTS columnar;
The actual extension docs are at https://docs.hydra.so/concepts/using-hydra-columnar CREATE TYPE datetimetz AS (
dt timestamptz,
tz varchar
);
Then in your table def you can call your new type to avoid multiple columns: CREATE TABLE example (
id integer,
created_at datetimetz
);
[1] https://replicache.dev [2] https://hexdocs.pm/phoenix_live_view/Phoenix.LiveComponent.h...