-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Juno becomes extremely laggy with large HTMLElement Arrays in the workspace #221
Comments
I experienced the same problem when loading large DataFrames with somehow convoluted data structures inside. Juno becomes unusable, pausing for a long time after each command (even the simplest ones!). Closing the workspace pane restored the normal responsiveness. Thanks for the workaround, it saved me from a lot of hassle! The issue now is not being able to use the workspace as long as I deal with these data structures. |
I'm having the same problem with a largish (~4000 rows) |
Probably not, but you can just add a |
Fixed with JunoLab/Atom.jl@445e3c9, afaict. |
I'm experiencing this exact problem today. After executing any command in the REPL, I need to wait a few seconds before it lets me type anything else in the REPL. One of my variables is a huge XML file. Printing it in the REPL produces 20 seconds of scrolling text. Julia 1.2, Juno 0.7.2. Closing the workspace pane fixes the problem for me. |
What does "huge XML file" mean? What package produces that and what does |
I load a large (100 MB) XML file using the LightXML package. Here's a MWE which generates its own data.
If you run this code, the Juno REPL should become very laggy. |
Should this issue be reopened? I still experience this if I run my MWE on the current version of Juno and Julia 1.3 (or 1.2). @pfitzseb |
What version of Atom.jl are you on? I'm not seeing any issues at all with your MWE (even with 20e6 nodes). |
Atom.jl v0.11.3, Atom itself is 1.41.0. I'm running Linux. To be more specific, every time I hit enter in the REPL, I have to wait about 2 seconds before I can enter anything in the julia> prompt. If I type many keys during this time, they all appear at once. Closing the workspace pane or zeroing out the variables fixes the lag. |
As discussed on Slack, when I scrape a few hundred websites and store the results in an Array of
HTMLElement{:HTML}
's, Juno becomes extremely slow if the workspace pane is open. Sample code to reproduce:Details
The text was updated successfully, but these errors were encountered: