[Ironruby-core] Increasing Memory Usage

2010-12-14 Thread James Jefferson
Hi, I'm currently running a very simple rails (2.3.8) app using ironruby 1.0. At the moment I'm only running the app in development mode using Webrick but I have some concerns about the amount of memory being used by ir.exe. Each web page refresh consumes an additional 5 Mb of memory which seems

Re: [Ironruby-core] Increasing Memory Usage

2010-12-14 Thread Thibaut Barrère
Hi James, can you try (not during development, just for a test) do the same test but run webrick with a production RAILS_ENV ? For Rails 2.3.8 this should be: script/server -e production Most of the time (most, not all :-) this is related to the development auto-reloading feature. hth, -- Thi

Re: [Ironruby-core] Increasing Memory Usage

2010-12-14 Thread James Jefferson
Thibaut, Thanks for the reply. I was wondering whether that was the case. I've tried starting in production but get the following error.. C:/ruby_iron/lib/ironruby/gems/1.8/gems/activesupport-2.3.8/lib/active_support/dependencies.rb:154:in `require': no such file to load -- activesp (MissingSou

Re: [Ironruby-core] Increasing Memory Usage

2010-12-14 Thread Thibaut Barrère
> > > C:/ruby_iron/lib/ironruby/gems/1.8/gems/activesupport-2.3.8/lib/active_support/dependencies.rb:154:in > `require': no such file to load -- activesp (MissingSourceFile) > > Any ideas? > Well you I'd guess you're trying to use the activesp gem ( http://www.xaop.com/labs/activesp) ? If so it's

Re: [Ironruby-core] Increasing Memory Usage

2010-12-14 Thread James Jefferson
Duh! Thanks Thibaut I was reading activesp as active_support. Having one of those days. I'd left a reference to activesp in from a previous attempt to integrate with Sharepoint (not very succesfully - hence the move to ironruby) I've now got ironruby running in production and my initial tests s