tag:railsonpostgresql.com,2005:/2010/08/03/pgcon-2010-talk-on-rails-and-postgresql/?format=atom Rails on PostgreSQL : PGCon 2010 talk on Rails and PostgreSQL <h3>If you like Ruby on Rails, you'll love Rails on PostgreSQL!</h3> 2010-08-04T11:10:03+00:00 Typo tag:railsonpostgresql.com,2005:Comment/150 2010-08-04T10:06:00+00:00 2010-08-04T11:10:03+00:00 Alex Kane Comment on PGCon 2010 talk on Rails and PostgreSQL by Alex Kane

Great post, thanks for the info.

tag:railsonpostgresql.com,2005:Comment/151 2010-08-04T16:44:51+00:00 2010-08-04T18:03:23+00:00 EppO Comment on PGCon 2010 talk on Rails and PostgreSQL by EppO

Do you know where to grab the tool that gives the sharedbuffers, workmem, autovacuum, … settings at 1:01:40 Tune PostgreSQL ? I didn’t find it searching sfpug on google.

Anyway, great talk, very interesting

tag:railsonpostgresql.com,2005:Comment/152 2010-08-04T18:05:55+00:00 2010-08-04T18:06:03+00:00 Tom Copeland Comment on PGCon 2010 talk on Rails and PostgreSQL by Tom Copeland

@eppo I think they’re just showing their current settings… I’m not sure what that file is; maybe it’s a puppet template from which they generate their postgresql.conf.

tag:railsonpostgresql.com,2005:Comment/153 2010-08-09T05:00:40+00:00 2010-08-10T13:22:39+00:00 Michael Kohl Comment on PGCon 2010 talk on Rails and PostgreSQL by Michael Kohl

@eppo: It’s a Puppet template. You’d have to set the ramfordatabase value yourself somewhere in the database template and then Puppet can generate the right config on pushing the file. You can even do something like

$ram_for_database = $deployment_env ? {
      staging => 'XXMB',
      default => 'XXXXMB',
}