|
You are here |
callistaenterprise.se | ||
| | | | |
mydeveloperplanet.com
|
|
| | | | | This blog introduces jOOQ, Liquibase, and Testcontainers integration in a Spring Boot application. It covers setting up the application, adding Liquibase for database management, generating jOOQ code, integrating a repository, implementing controller methods, and using Testcontainers for integration testing. Additionally, it discusses running the application with Spring Boot Docker Compose support. | |
| | | | |
pganalyze.com
|
|
| | | | | Learn how to create and implement a row level security policy in Rails, allowing to limit the database rows a user can access. | |
| | | | |
www.thenile.dev
|
|
| | | | | At Nile, we're making it easier for companies to build world-class control planes for their infra SaaS products | |
| | | | |
vxlabs.com
|
|
| | | In order to add a GiST index on a Postgres database that could be used to accelerate trigram matches using the pg_trgm module and the special gist_trgm_ops operator, I had to code up a special Django Index Django will hopefully soon support custom index operators, but if you need the functionality right now, this example will do the trick. The special GiST index class looks like this: from django.contrib.postgres.indexes import GistIndex class GistIndexTrgrmOps(GistIndex): def create_sql(self, model, sch... | ||