qatanah | 5 years ago | on: Ask HN: Has anybody shipped a web app at scale with 1 DB per account?
qatanah's comments
qatanah | 5 years ago | on: Ask HN: Do you still use MongoDB?
https://dzone.com/articles/mongodb-bitcoin-how-nosql (article is 2014)
I'm a bit outdated with mongo since 2.4-2.6 . It's a bit traumatic and i'm never coming back to it.
If in case I'll need a high atomicity and consistency for financial transaction i'll just use postgres with SERIALIZABLE transaction isolation. This solves everything.
Checkout the redbook.io it's a bit outdated but you can see from stonebreaker's discussion that nosql + sql will merge, which is what happening or happened right now. Mongo having transaction, and SQL having json datatypes.
qatanah | 5 years ago | on: Ask HN: Do you still use MongoDB?
Also, you'll encounter more problems with mongodb if in case you need transaction. You should check out more discussion here on db systems.
qatanah | 5 years ago | on: New Lenovo ThinkPad Range with Ryzen 4000 and 4000 Pro Mobile
The only thing that makes me use mac is the trackpad and retina. I have 15" late 2015 mbp, so far the best mbp out there w/o the butterfly keyboard.
Im still considering to go back to thinkpad for my next laptop since i had t42p, t60 before.
qatanah | 6 years ago | on: Ask HN: What projects are you working on now?
qatanah | 6 years ago | on: Memcached 1.6
qatanah | 6 years ago | on: Ask HN: I'm away from the software industry since 2017; what has happened since?
qatanah | 6 years ago | on: If this project is dead, just tell us
qatanah | 6 years ago | on: 100k+ page views a month for $5 with a self-hosted static site
Nothing surprising here.
But a great blog overall!
qatanah | 6 years ago | on: PostgreSQL 12
qatanah | 6 years ago | on: Tmux Tutorial
qatanah | 6 years ago | on: Show HN: Announcing the FaunaDB Add-On for Netlify
qatanah | 6 years ago | on: ORMs Are Backwards
I just use ORM for OLTP and raw SQL for OLAP (Better for being more expressive).
Migrations saves a lot of time.
qatanah | 6 years ago | on: MacBook Pro Keyboard Drives Me Crazy
I bought it when the new 2016 model came out. Glad that I didn't stick with the new trend. Definitely a fad.
qatanah | 6 years ago | on: Show HN: We track Reddit, Google trends, Twitter, etc. to find trending topics
qatanah | 6 years ago | on: Amazon Aurora PostgreSQL Serverless
qatanah | 6 years ago | on: HTTP Cats
qatanah | 8 years ago | on: Wapp – a single-file web framework by the creator of SQLite
qatanah | 8 years ago | on: Postgres Hidden Gems
FILLFACTOR - For UPDATE heavy tables.
Increase max_wal_size - For write heavy database.
qatanah | 8 years ago | on: IPv10
https://github.com/bernardopires/django-tenant-schemas
All I can say, that it was a nightmare to do deployment and migration and some backward incompatibility features restrained us in some ways.
The company valued data isolation as a priority rather than ease of developing it. Hard to work with but great for data isolation.