Re: [Ironruby-core] using external library (REXML) is extremely slow when running my app in debug mode

2012-09-05 Thread Anton Firsov
I tried it now, but everything is the same.
Have to use .NET xml api.

Thanks for your answer,
Anton

2012/9/2 Orion Edwards orion.edwa...@gallagher.co

 Without trying to reproduce the issue, perhaps it is related to the
 debugger tracing information or exceptions from inside IronRuby caused by
 REXML

 You could try enabling visual studio's Just My Code debugger option -
 it's purpose is to filter out external stuff like this.

 It's on the Tools\Options dialog on the Debugging section

 *
 __**

 Orion Edwards **|** Technical Leader *
 PHONE +64 7 838 9800 *|* FAX +64 7 838 9801 *|*
 EMAIL orion.edwa...@gallagher.co *|* WEB 
 *www.gallagher.co*http://www.gallagher.co/




 From:Anton Firsov anton...@gmail.com
 To:ironruby-core@rubyforge.org
 Date:01/09/2012 04:49 a.m.
 Subject:[Ironruby-core] using external library (REXML) is
 extremely slow when running my app in debug mode
 Sent by:ironruby-core-boun...@rubyforge.org
 --



 Hi All,

 I'm using IronRuby as scripting environment inside my app. I use
 scriptEngine.SetSearchPaths() to include the REXML files. The problem:
 when I execute my app with F5 (debugger attached), my scripts run extremely
 slow if I use REXML classes. If I use CTRL+F5 (no debugger), everything is
 fine.

 Any tips how to workaround this issue?

 Is it possible, that a debugger is hooked inside my ScriptEngine, when it
 executes .rb files? If yes, how can I eliminate it? I do not enable any
 debugging options in my engine, and I unistalled the IronRuby VS2010
 extension.

 Thanks,
 Anton___
 Ironruby-core mailing list
 Ironruby-core@rubyforge.org
 http://rubyforge.org/mailman/listinfo/ironruby-core


 ___
 Ironruby-core mailing list
 Ironruby-core@rubyforge.org
 http://rubyforge.org/mailman/listinfo/ironruby-core


image/gif___
Ironruby-core mailing list
Ironruby-core@rubyforge.org
http://rubyforge.org/mailman/listinfo/ironruby-core


Re: [Ironruby-core] using external library (REXML) is extremely slow when running my app in debug mode

2012-09-05 Thread Mike Dalessio
On Wed, Sep 5, 2012 at 3:12 PM, Anton Firsov anton...@gmail.com wrote:

 I tried it now, but everything is the same.
 Have to use .NET xml api.


Has the ruby FFI library been ported to Ironruby? If so, It might be worth
trying Nokogiri 1.4.x, which uses FFI to talk to libxml2.

In fact, as the maintainer of Nokogiri and contributor to ruby-ffi, I'd be
interested to know if that works, and if not why not.



 Thanks for your answer,
 Anton


 2012/9/2 Orion Edwards orion.edwa...@gallagher.co

 Without trying to reproduce the issue, perhaps it is related to the
 debugger tracing information or exceptions from inside IronRuby caused by
 REXML

 You could try enabling visual studio's Just My Code debugger option -
 it's purpose is to filter out external stuff like this.

 It's on the Tools\Options dialog on the Debugging section

 *
 __**

 Orion Edwards **|** Technical Leader *
 PHONE +64 7 838 9800 *|* FAX +64 7 838 9801 *|*
 EMAIL orion.edwa...@gallagher.co *|* WEB 
 *www.gallagher.co*http://www.gallagher.co/




 From:Anton Firsov anton...@gmail.com
 To:ironruby-core@rubyforge.org
 Date:01/09/2012 04:49 a.m.
 Subject:[Ironruby-core] using external library (REXML) is
 extremely slow when running my app in debug mode
 Sent by:ironruby-core-boun...@rubyforge.org
 --



 Hi All,

 I'm using IronRuby as scripting environment inside my app. I use
 scriptEngine.SetSearchPaths() to include the REXML files. The problem:
 when I execute my app with F5 (debugger attached), my scripts run extremely
 slow if I use REXML classes. If I use CTRL+F5 (no debugger), everything is
 fine.

 Any tips how to workaround this issue?

 Is it possible, that a debugger is hooked inside my ScriptEngine, when it
 executes .rb files? If yes, how can I eliminate it? I do not enable any
 debugging options in my engine, and I unistalled the IronRuby VS2010
 extension.

 Thanks,
 Anton___
 Ironruby-core mailing list
 Ironruby-core@rubyforge.org
 http://rubyforge.org/mailman/listinfo/ironruby-core


 ___
 Ironruby-core mailing list
 Ironruby-core@rubyforge.org
 http://rubyforge.org/mailman/listinfo/ironruby-core



 ___
 Ironruby-core mailing list
 Ironruby-core@rubyforge.org
 http://rubyforge.org/mailman/listinfo/ironruby-core


image/gif___
Ironruby-core mailing list
Ironruby-core@rubyforge.org
http://rubyforge.org/mailman/listinfo/ironruby-core


Re: [Ironruby-core] using external library (REXML) is extremely slow when running my app in debug mode

2012-09-02 Thread Orion Edwards
Without trying to reproduce the issue, perhaps it is related to the 
debugger tracing information or exceptions from inside IronRuby caused by 
REXML

You could try enabling visual studio's Just My Code debugger option - 
it's purpose is to filter out external stuff like this.

It's on the Tools\Options dialog on the Debugging section


__

Orion Edwards | Technical Leader 
PHONE +64 7 838 9800 | FAX +64 7 838 9801 | 
EMAIL orion.edwa...@gallagher.co | WEB www.gallagher.co  




From:   Anton Firsov anton...@gmail.com
To: ironruby-core@rubyforge.org
Date:   01/09/2012 04:49 a.m.
Subject:[Ironruby-core] using external library (REXML) is 
extremely slow when running my app in debug mode
Sent by:ironruby-core-boun...@rubyforge.org



Hi All,

I'm using IronRuby as scripting environment inside my app. I use 
scriptEngine.SetSearchPaths() to include the REXML files. The problem: 
when I execute my app with F5 (debugger attached), my scripts run 
extremely slow if I use REXML classes. If I use CTRL+F5 (no debugger), 
everything is fine.

Any tips how to workaround this issue?

Is it possible, that a debugger is hooked inside my ScriptEngine, when it 
executes .rb files? If yes, how can I eliminate it? I do not enable any 
debugging options in my engine, and I unistalled the IronRuby VS2010 
extension.

Thanks,
Anton___
Ironruby-core mailing list
Ironruby-core@rubyforge.org
http://rubyforge.org/mailman/listinfo/ironruby-core

image/gif___
Ironruby-core mailing list
Ironruby-core@rubyforge.org
http://rubyforge.org/mailman/listinfo/ironruby-core