I have encountered this in my Gemfile
while learning ruby on rails:
group :development, :test do
gem 'sqlite3', '~> 1.4'
group :production do
gem 'pg'
So far I have understood that sqlite3
is not a production-ready database as it does not support multiple users to write the database at the same time. In this case, why don't we just use postgres
in development?