- News
- Last Updated: December 08, 2016
- Timothée Peignier
Postgres is our favorite database—it’s reliable, powerful and secure. Here are a few essential tips learned from building, and helping our customers build, apps around Postgres. These tips will help ensure you get the most out of Postgres, whether you’re running it on your own box or using the Heroku Postgres add-on.
Postgres connections are not free , as each established connection has a cost. By using a connection pooler, you’ll reduce the number of connections you use and reduce your overhead.
Most Postgres client libraries include a built-in connection…
- News
- Last Updated: June 03, 2024
- Timothée Peignier
Redis might sound like it’s just a key/value store, but its versatility makes it a valuable Swiss Army knife for your application. Caching, queueing, geolocation, and more: Redis does it all. We’ve built (and helped our customers build) a lot of apps around Redis over the years, so we wanted to share a few tips that will ensure you get the most out of Redis, whether you’re running it on your own box or using the Heroku Redis add-on.
By using a connection pooler, you'll reduce the connection overhead and therefore…
- Engineering
- Last Updated: October 23, 2014
- Timothée Peignier
Heroku provides many instrumentations for your app out of the box through our new Heroku developer experience .
We have open-sourced some of the tools used to instrument Heroku apps,
but today’s focus will be on instruments , a Go library that allows you to collect metrics over discrete time intervals.
Instrumentation is the art and science of measurement and control of process variables within a production system.
Instruments attached to a system may provide signals used to operate the system like circuit breakers or to alert a human operator.
…
Subscribe to the full-text RSS feed for Timothée Peignier.