Confusion (Ivo Wever)
- Login: Confusion
- Email: ivo.wever@gmail.com
- Registered on: 03/23/2011
- Last sign in: 02/17/2020
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 2 | 2 |
Activity
04/01/2021
-
07:25 PM Ruby Bug #17772 (Rejected): Performance issue with NameError message in context with large instance variables (not caused by did_you_mean)
- The following script takes about 2 seconds (tested on 2.6.6 and 2.7.2) to get from 'rescue' to 'ensure' on my machine, when executed as `ruby --disable-did_you_mean script.rb`. The time is taken by getting the `e.message`.
```
class ...
08/03/2019
-
12:29 AM Ruby Revision a375a451 (git): [bundler/bundler] Correct default cache path
- The default cache path is `vendor/cache`, not `vendor/bundle`.
https://github.com/bundler/bundler/commit/49256bb3d2
03/25/2011
-
08:12 PM Ruby Bug #4525: Exponential performance when summing Enumerable
- =begin
Shoot, misclicked the preview and no ability to edit original submission? A better formatted version:
When you sum an Enumerable (using .inject(:+) or in a more verbose fashion), 1.8.7 and 1.9.2 show exponential performance, wh... -
08:09 PM Ruby Bug #4525 (Closed): Exponential performance when summing Enumerable
- =begin
When you sum an Enumerable (using .inject(:+) or in a more verbose fashion), 1.8.7 and 1.9.2 show exponential performance, where JRuby and Rubinius show the expected linear behavior.
class A
attr_accessor :foo
def initi...