PgHero
Scenic
Our great sponsors
PgHero | Scenic | |
---|---|---|
10 | 8 | |
7,136 | 3,241 | |
- | 1.1% | |
0.0 | 5.3 | |
18 days ago | 3 months ago | |
Ruby | Ruby | |
MIT License | MIT License |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
PgHero
-
What are your favourite approaches to keeping on top of Postgres health?
I use either PgHero or Rails PG Extras on every project
-
railstart-niceadmin support more features
- [pghero](https://github.com/ankane/pghero)
-
railstart-niceadmin release now!Backend management system based on Bootstrap 5 and NiceAdmin and Rails 7
pghero
- How and why Relational Model works for databases
-
Check why Django app is slow in production
If you are using PostgreSQL you can enable logging of slow queries and connect to the server with pghero (https://github.com/ankane/pghero) and check top queries by the number of requests and total usage time. Also, you can just enable logging of queries in Django, and on each request, you will have a list of queries on development, sometimes it's just a missing select_related of prefetch_related to increase performance, or you need to create a complex index.
-
Tips for a Healthier Postgres Database
If you are using rails, pghero is a great gem to get better visibility on your Postgres performance
-
How to find and fix a missing database index on a RoR app
https://github.com/ankane/pghero will tell you about any indexes that you should add (and it's free).
Scenic
-
Database Views & Rails Active Record: defining new Model classes out of views
To model our Deliverable class, we will need a view. We will use the popular scenic gem, which provides some useful generators for creating views with their respective migrations, and utilities to handle views versioning.
-
Materialised views for serious performance gains
+1 for scenic - https://github.com/scenic-views/scenic
For views (materialized and non-materialized) in Rails apps, scenic is your friend.
-
Most performant way to build an analytics dashboard from a relational database backend that only stores numeric values, where the data the end-user sees is "categorized" into numeric brackets (e.g. 60-79 = Med, 80-100 = High, etc)
If the data doesn't need to be close to real-time, and if your DB can handle a bit of load, I'd use a "batch" approach. To do this, I'd create a materialized view in your relational DB that you'd then refresh periodically. The easiest way to do this is with the `scenic` gem. Once you've done this, you can simply create a new model and set the `table_name` to the name of the materialized view, and then treat it as a regular model.
-
Frameworks for SQL Development in Rails?
I use the scenic gem to manage views which uses raw sql files: https://github.com/scenic-views/scenic
-
Rails application boilerplate for fast MVP development
add scenic
What are some alternatives?
Database Cleaner - Strategies for cleaning databases in Ruby. Can be used to ensure a clean state for testing.
Blazer - Business intelligence made simple
Lol DBA - lol_dba is a small package of rake tasks that scan your application models and displays a list of columns that probably should be indexed. Also, it can generate .sql migration scripts.
SecondBase - Seamless second database integration for Rails.
SchemaPlus - SchemaPlus provides a collection of enhancements and extensions to ActiveRecord
Squasher - Squasher - squash your old migrations in a single command
Redis Dashboard - Sinatra app to monitor Redis servers.
Polo - Polo travels through your database and creates sample snapshots so you can work with real world data in development.
Ruby PG Extras - Ruby PostgreSQL database performance insights. Locks, index usage, buffer cache hit ratios, vacuum stats and more.