Working with psql effectively
What does a beginner PostgreSQL developer need to know?
PostgreSQL Contributor, Yandex Cloud
Generalized Search Trees (GiST) are one of the distinctive architectural features of Postgres. GiST uses the idea of dividing objects into groups based on some similarity feature. At the same time, it is already very different from the original scientific papers in which the first ideas were proposed. You will learn about the innovations and features that are still in development.
In this report, I will tell you about one interesting, in my opinion, case of our client. I will share how a series of errors at different stages of the database lifecycle once led to its complete shutdown for more than a week, wraparound, broken blocks, maintenance problems and sleepless nights in search of a solution.
SQL HowTo: Graph Algorithms
Leading Database Architect, Tensor
I will talk about how to use PostgreSQL to turn a fly into an elephant, build a maze or find a mutual friend.
Senior Developer, Tantor Labs
You will learn about why PostgreSQL, and not MySQL, NoSQL or something else, learn about the PostgreSQL community, who are the committer and contributor, major contributor, how to get into the PostgreSQL community, how to build PostgreSQL and how to debug it, and much more.
DevOps Team lead, Tantor Labs
Working with the database through the psql terminal client can be useful and productive. Let's get acquainted with connecting to a cluster via psql, learn how to use meta commands, manage output and input, see how you can use the query buffer – and all this with examples.
Writing a PostgreSQL extension
Senior Developer, Tantor Labs
Let's look at why it's worth starting with extensions, how to write .the c file and the test for it, how to write a Makefile and how to install the extension in PostgreSQL.