Memory issues

I have a complex scraping session that loops multiple times with parameters called from a database. It begins running slowly afer a while, and then stops producing a memory error.

I know you have said in other posts that the variables are kept in memory until the scraping session is either stopped or the variables are specifically zeroed out.

How do you zero out variables? I've seen you mention it but can't find the documentation for it.

Memory issues

Hi,

Most of your question will probably be answered here:

[url]http://www.screen-scraper.com/support/faq/faq.php#Optimizing[/url]

On wiping out variables, you can always do this to get rid of them:

session.setVariable( "FOO", null );

Kind regards,

Todd Wilson