Bug 3924 Performance bug (in require?)
From http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-core/37303
Ticket in redmine http://redmine.ruby-lang.org/issues/3924
nahi (Hiroshi Nakamura) measured loading times of 2 rails 3.0.7 apps on
1.9.2p274
, 1.9.3dev r32204
, 1.9.3dev r32204
with Shyouhei's expand_path cache patch.He asked a downside of this patch.
Then, mame3 (Yusuke ENDOH) said that paths stored in cache won't never be collected by GC.
--
中村さん (nahi)が2つのrails 3.0.7アプリにおいて,
1.9.2p274
, 1.9.3dev r32204
, 1.9.3dev r32204
に shyouheiさんのexpand_path cache patchを加えた物で起動時間を測定しました.そして彼はこのパッチのデメリットを聞いたところ,遠藤さんがキャッシュされたpathはGCされず,メモリリークするのではないかとの懸念を示しました.
[ruby-dev:43898] Bug assigning party
From http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-dev/43898
Sasada announced bug assigning party will be held tomorrow. (6/26 JST)
The party attendees assign not-assigned tickets to maintainers, etc.
Not-assigned tickets are over 100.
--
ささださんが1.9.3リリース前に,未アサインのチケットを
誰かに押し付け
適切な担当者にアサインする会を開くそうです.
欠席裁判怖い
kosaki0: こわい
kosaki0: いないと欠席裁判で無茶振りされる会ですか
ko1_ndk: そうです>無茶ぶり
(Logs from #ruby-ja, ircnet)
Feature 4921 Remove intern.h
From http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-dev/43875
Ticket in redmine http://redmine.ruby-lang.org/issues/4921
Naruse proposed that remove intern.h.
First, what's intern.h?
I think intern means "internal", but if it is, it's not good that intern.h is ininclude/ruby
.
Matz agreed at [ruby-dev:43876] if it won't raise compatibility problem.
This change will be included soon.
Contents in
intern.h
will be moved into ruby.h
, and intern.h
will only include ruby.h
and nothing else.[ruby-core:37336] I have imported Rake 0.9.2 to trunk
From http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-core/37336
Eric imported rake 0.9.2 to trunk.
Eric が rake 0.9.2 を trunk にマージした旨を伝えています.
Bug 4920 Process.daemon()呼び出しによりタイマースレッドが2つ出来てしまう
From http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-dev/43873
Ticket in redmine http://redmine.ruby-lang.org/issues/4920
Kosaki reported a bug that another 2 timer threads are created when call
Process.daemon
.Fixed at r32221.
[ruby-dev:43901] ThreadGroup#make_local_space! (Re: ThreadGroup の強化案)
From http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-dev/43901
Patch (from r32226) pasted on mail
Nagai proposed method
ThreadGroup#make_local_space
as a ThreadGroup
improvement.ThreadGroup#make_local_space
creates independent space by a one ThreadGroup
for methods.Method that defined in
ThreadGroup
that has local space is available only in that ThreadGroup
.Other
ThreadGroup
s can see original method, they don't get effect.