Please confirm you are human

This browser or connection looks automated. Press and continuously hold the control for 3 seconds to enable Google-hosted web results and, when separately allowed, AI-assisted answers.

A successful check enables 100 search requests. Interactive access does not authorize scraping, systematic collection, or reuse of search output.

Hold with a pointer, or hold Space or Enter.

News

DEV Community
dev.to > jones_chen_592558a62a5c44 > treating-one-day-as-a-system-primitive-1eba

Treating “one day” as a system primitive

19+ min ago   (165+ words) For most AI apps, the unit of time is a request. A user sends a message, the model responds, and the workflow ends. Cogweald is designed around a different primitive: one real day. Each world can advance by at most…...

DEV Community
dev.to > ashish_sinha_5241c7673d93 > i-described-1245-tables-with-an-llm-and-retrieval-got-worse-58a

I described 1,245 tables with an LLM and retrieval got worse

3+ hour, 43+ min ago   (1126+ words) The cataloguing step is supposed to be the easy win. You have a schema whose tables are called ecm_template_link and v_pmpm, your users ask questions in English, and the gap between those two vocabularies is why retrieval misses. So you point a…...

DEV Community
dev.to > ashish_sinha_5241c7673d93 > every-text-to-sql-benchmark-score-youve-seen-was-measured-without-access-control-37h

Every text-to-SQL benchmark score you've seen was measured without access control

3+ hour, 43+ min ago   (955+ words) Spider, BIRD, LiveSQLBench. If you have evaluated a text-to-SQL system in the last five years you have quoted a number from one of them. All three ask the same question: given a schema and an English question, does the system…...

DEV Community
dev.to > lucy_anyango_d6aa9788c23a > data-relationships-data-modelling-schemas-and-joins-in-power-bi-1hkp

Data Relationships, Data Modelling Schemas, and Joins in Power BI.

4+ hour, 44+ min ago   (1280+ words) Data Modelling in Power BI What Data Modelling Means in Power BI Data modelling... Tagged with analytics, data, database....

DEV Community
dev.to > someshp > oracle-integration-cloud-integration-patterns-fnc

Oracle Integration Cloud Integration Patterns

4+ hour, 34+ min ago   (162+ words) Twelve reusable patterns, real-world examples, and implementation guidance for Oracle Integration... Tagged with architecture, cloud, software....

Medium
medium.com > @umeshcapg > the-database-connection-pool-was-configured-with-50-connections-so-why-did-the-20th-request-time-e559f67397cb

The database connection pool was configured with 50 connections, so why did the 20th request time…

3+ hour, 57+ min ago   (30+ words) The database connection pool was configured with 50 connections, so why did the 20th request time out? Understanding how parallel database queries inside a single HTTP request can exhaust your …...

Medium
medium.com > @sumit-paul > our-users-phones-were-the-backup-rebuilding-a-lost-database-from-app-caches-8c4d78dffc35

Our users’ phones were the backup: rebuilding a lost database from app caches

4+ hour, 44+ min ago   (223+ words) How expired cache entries on readers’ devices, server logs, and a year-old dump were merged back into MongoDB without …...

Medium
medium.com > @harshithgowdakt > vanilla-postgresql-vs-amazon-aurora-postgresql-7d383e80c68e

Vanilla PostgreSQL vs Amazon Aurora PostgreSQL

5+ hour, 19+ min ago   (1187+ words) At the application level, Amazon Aurora PostgreSQL looks like PostgreSQL. You connect with PostgreSQL drivers, run SQL, use transactions, indexes, MVCC. Underneath, it is a different database architecture. One sentence explains most of the difference: Vanilla PostgreSQL couples the database engine…...

DEV Community
dev.to > shohruh_sharipov > your-app-went-viral-adding-servers-made-it-worse-heres-why-nhd

Your app went viral. Adding servers made it worse. Here's why.

10+ hour, 26+ min ago   (94+ words) It's midnight, someone huge shares your app, 100,000 people show up — and the page dies. You add three servers. It gets worse. The rule that finally made this click for me: before you add capacity, find out where the request is…...

DEV Community
dev.to > numb_code_07 > why-timestamps-lie-in-distributed-systems-and-how-logical-clocks-fix-it-k5f

Why Timestamps Lie in Distributed Systems (and How Logical Clocks Fix It)

10+ hour, 59+ min ago   (476+ words) There's a line of code in almost every service that stores replicated data: def resolve(incoming,... Tagged with distributedsystems, backend, systemdesign, database....