Updated: 2024-06-13 11:16:29
Articles Topics All Articles Domain-Driven Design Testing Ruby on Rails React JS Async Remote Szymon Fiedler June 13, 2024 improve this article rails mysql postgresql How to add index to a big table of your Rails app and check why 5600+ Rails engineers read also this How to add index to a big table of your Rails app When your application is successful , some of the tables can grow pretty big â Iâ m looking at you users table . If youâ re curious enough , you periodically check how your database performs . If any slow query pops up in the metrics , thereâ s a great chance that some index is missing . State of the DB engines While most modern database engines can create indexes in an asynchronous , nonâblocking manner , itâ s good to get familiar with all the exceptions from this
Updated: 2024-06-12 00:30:00
Ruby A Programmer's Best Friend Home Downloads Documentation Libraries Community News Security About Ruby Menu Ruby 3.3.3 Released Posted by k0kubun on 12 Jun 2024 Ruby 3.3.3 has been . released This release : includes RubyGems 3.5.11 Bundler 2.5.11 REXML 3.2.8 strscan 3.0.9 dump=prism_parsetree is replaced by parser=prism dump=parsetree Invalid encoding symbols raise SyntaxError instead of EncodingError Memory leak fix in Ripper parsing Bugfixes for YJIT , Ripper.tokenize RubyVM : InstructionSequence to_binary with-gmp and some build environments Please see the GitHub releases for further . details Download https : cache.ruby-lang.org pub ruby 3.3 ruby-3.3.3.tar.gz SIZE : 22105219 SHA1 : b71971b141ee2325d99046a02291940fcca9830c SHA256 :
Updated: 2024-06-04 11:09:43
: : Articles Topics All Articles Domain-Driven Design Testing Ruby on Rails React JS Async Remote Tomasz Stolarczyk June 4, 2024 improve this article heroku rack middleware Conditionally Enable GZIP on Heroku with Rack : Deflater : Reduce Response Size Significantly and check why 5600+ Rails engineers read also this Conditionally Enable GZIP on Heroku with Rack : Deflater : Reduce Response Size Significantly If you came here after searching for something like rack deflater path condition or rack deflater if option , rdquo here is your : answer config middleware use Rack Deflater if lambda do env env PATH_INFO your endpoint path here end Just insert this line in your application.rb and you're set . We could wrap up this post here , but But we all know that we should not take a piece of