de en es fr nl pl pt sv zh

postgresql

Postgres Full Text Search is better than ... (Part 2)

Adam Cooper

Part 2 of a 2-part post on the FTS features available in Postgres and how you might use them to build a simple search API. If you want to follow along head over to the GitHub repo, grab the source data and spin up the included docker config, we'll be searching a database of 50,000 movies. Check...

Postgres Full Text Search is better than ... (Part 1)

Adam Cooper

Everyone needs Full Text Search (FTS) at some point and the most common way to get it is to push your data to Elastic/OpenSearch, Solr, or something else built on top of Lucene. It's a solution that works but adds extra complexity, cost, and consistency challenges. So, what if I told you that, if...

Relational Database transactions (ACID)

me@ahmed-ibrahim.com

What is the Database transaction? A transaction is a single logical unit of work which accesses and possibly modifies the contents of a database. Transactions access data using read and write operations. All types of database access operation which are held between the beginning and end...

PGCon 2019 Trip Report

Homing on Code

During my flight I finally decided to watch the “Shape of Water”. I knew the film was critically acclaimed but I wasn’t expecting a lovecraftian theme and it never clicked with me that it was directed by Guillermo del Toro - it was a very fitting thing to watch during a flight above the ocean...

Some little known PostgreSQL/PostGIS tips & tricks

Abel Vázquez

0. What’s this and what’s not This is not an SQL course, not even a crash-course, not a introduction, not a master class… It’s just a compilation of tips, tricks or unusual uses of PostgreSQL / PostGIS that I use a lot and may be helpful for anybody out there. Just try to keep your brain within...

Корректная работа с PostgreSQL в Docker

The Hardcoded Blog

Интересную проблему удалось решить вчера. Вот уже несколько месяцев мы в Naumen Phone используем Docker для создания окружения для сборки и тестирования приложений. Технология для этих целей подходит отлично, экономит кучу времени и нервов по сравнению с тем, что было раньше. Образ контейнера...

Kamailio from tables to htables

eloycoto

Hash tables are one of the best features in Kamailio, but they can be a double edged sword. Build web applications that work with the htables architecture can be difficult. I am using Django since a few years ago. This framework had helped me a lot with forms, database models, fixtures, test,...