We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
from nokogiri-talk mailing list:
require 'rubygems' require 'nokogiri' STDOUT.sync = true loop do doc = Nokogiri::HTML('whatever ' * 10000) doc = doc.at_css("body") doc = doc.dup GC.start putc "." end
results in a memory leak under both ruby1.8 and ruby1.9. thanks to Patrik Rak [email protected] for reporting.
The text was updated successfully, but these errors were encountered:
reproduced under libxml 2.7.6 and 2.7.7.
Sorry, something went wrong.
rooting nodes after duplication. closed by 42920e6
No branches or pull requests
from nokogiri-talk mailing list:
results in a memory leak under both ruby1.8 and ruby1.9. thanks to Patrik Rak [email protected] for reporting.
The text was updated successfully, but these errors were encountered: