PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Come disabilitare la dichiarazione preparata in heroku con il database postgres

A partire dal 19 febbraio 2014, heroku non sovrascrive più database.yml così puoi disattivare le istruzioni preparate nella tua production e staging (o default ) blocco del database.yml file come raccomandato dagli ultimi documenti :

default: &default
  adapter: postgresql
  encoding: unicode
  pool: 5
  prepared_statements: false

development:
  <<: *default
  database: myapp_development

test:
  <<: *default
  database: myapp_test

production:
  <<: *default
  url:  <%= ENV['DATABASE_URL'] %>
  pool: <%= ENV['DB_POOL'] || ENV['MAX_THREADS'] || 5 %>

staging:
  <<: *default
  url:  <%= ENV['DATABASE_URL'] %>
  pool: <%= ENV['DB_POOL'] || ENV['MAX_THREADS'] || 5 %>