Sage Griffin

Results 124 comments of Sage Griffin

This might be a little harder to implement than just performing the query on the summary page, the query to get this is: ```sql select * from ( select versions.*,...

We have two bots that are used. Only one is relevant to your study. The username is https://github.com/rails-bot. It is a fork of rust-highfive. The second bot is responsible for...

> Will diesel support #[diesel(embed)] on AsChangeset structs? Yes. I just haven't gotten around to implementing it. IIRC the last time I worked on it, there was a weird interaction...

What's leading you to believe that the auto vacuums on this table are causing problems? The crates table is extremely small relative to the rest of the database, and I'd...

Yeah, unfortunately we can't partition on a Boolean for this. Just the date should be fine, but the existing BRiN index should have the same effects given the write patterns...

There's nothing in Diesel that just tells you if there's pending migrations or not, no. There is `http://docs.diesel.rs/diesel/migrations/fn.run_pending_migrations.html` if you'd rather just automatically run them. I can definitely add a...

This is the behavior of PostgreSQL full text search, which we have very little control over. I believe in this case, "any" is a stop word. > Stop words are...

Perhaps we should modify the query to check whether any of the keywords exactly match the search text.

This isn't about it being too short, it's about it only containing stop words. Unfortunately, PG gives us no way to actually detect whether a full text search query is...