News

How GraalVM improves Ruby | Talks at DeepSource - YouTube
Discover the power of GraalVM and how it's revolutionizing the Java ecosystem! With GraalVM, you can run over 10 languages on the JVM and achieve lightning-fast performance for your Ruby code. Faraaz from the DeepSource Language Engineering team t...





Modeling your public static pages as resources in Ruby on Rails
So, a very simple example would be for you to have a resource :privacy_policy, only [:show]. The icky thing with that is that while you are suggesting a single resource here, Rails controllers are not smart enough to acknowledge it, so you'd still...




Examples to explore possible race conditions when caching custom computed values in Rails
In Rails, sometimes you will need to save counts or custom computed values, where the default counter cache will not be enough.Maybe you want to…Update a counter cache when a value change and not only when the association is created or deleted.Hav...