#ruby
Read more stories on Hashnode
Articles with this tag
Active Record is the Object-Relational Mapping (ORM) layer in Ruby on Rails. It allows developers to interact with the database in an object-oriented...
Basics of Ruby Programming Variables and Data Types: In Ruby, variables don't have types; instead, objects have types. Variables simply reference...
Improving performance in a Ruby on Rails application with PostgreSQL involves several strategies: 1. Database Indexing: Ensure that your database...
Introduction: In the world of Ruby on Rails development, ActiveRecord stands tall as the go-to ORM framework for simplifying database interactions. In...
What is Redis ? Redis is an open-source, in-memory data structure store used as a database, cache, and message broker. It supports various data...
In Rails, background workers are typically used to execute tasks asynchronously, outside of the normal request-response cycle. This is useful for...