Rails

Rails for Multi database defines reading_request? in resolver

Rails moves reading_request? method from the DatabaseSelector to the DatabaseSelector::Resolver class so that we can override the method in custom Resolver.

Read
Rails

Rails allows specifying the maximum number of records that will be destroyed in a single background job.

Rails adds an active record configuration to limit the maximum number of dependent records destroyed in a single background job.

Read
Rails

Rails allows using aliased attributes with insert_all and upsert_all

Rails is continuously adding convenience to make active record queries more flexible. Now, Rails has added support to use aliased attributes with insert/upsert_all.

Read
Kubernetes

Know how to rollout and rollback deployments in Kubernetes

As people and businesses increasingly depend on SaaS products, DevOps have started on creating reliable infrastructure. Reducing deployment downtime is at the top of their priority list. In this post, we will see how Kubernetes handles this gracefully.

Read
Ruby

Ruby 3.1 introduces Variable Width Allocation for Strings

In this blog let us understand how Variable Width Allocation works in Ruby

Read
Ruby

How does Ruby manage memory?

Each programming language has its version of memory management so, let us look into how Ruby does this under the hood.

Read