Blogs
Full Text Search in Milliseconds with Rails and PostgreSQL · pganalyze
Imagine the following scenario: You have a database full of job titles and descriptions, and you’re trying to find the best match. Typically you’d start by using an ILIKE expression, but this requires the search phrase to be an exact match. Then y...
Feature Flags: The stupid simple way to de-stress production releases
Feature flags (or feature toggles) are a technique for incrementally rolling out functionality in an application. Work that is not completely ready to go live can be released in chunks while being hidden by a flag. These flags are usually configur...
The Complete Guide for Deprecation Warnings in Rails
Deprecation warnings are a common thing in our industry. They are warnings that notify us that a specific feature (e.g. a method) will be removed soon (usually in the next minor or major version) and should be replaced with something else. Feature...
A code-first approach to automate the writing of unit tests.
A code-first approach to automate the writing of unit tests. - fixrb/brutal. Let Brutal shape for you in no time the actual behavior of your code through as many combinations of contexts as needed.By delegating to Brutal the repetitive (and redund...