Y
Hacker News
new
|
ask
|
show
|
jobs
by
simonw
327 days ago
Supporting HTTP, Redis and PostgreSQL protocols at the same time is a neat trick!
psql -h localhost -p 9401 => SET mykey 'my value'; => GET mykey; => DEL mykey;
1 comments
tidwall
327 days ago
The protocols are autodetected. No need to carry multiple ports around.
link