Posts by jorgedjr21 • 1 point
2 posts
-
0
votes1
answer35
viewsA: How to order a query using all of her data?
I didn’t quite understand the question, but in any case, perhaps the method sort_by help you https://apidock.com/ruby/Enumerable/sort_by…
-
-1
votes3
answers144
viewsA: Should I use Symbols in hashes and parameters to optimize memory usage in Ruby?
I’ve always used something like hash = { key: "value" } You can use methods such as deep_symbolize_keys to transform your hash to symbols (but it’s a Rails method)…