I am writing a perl script and using XML::Simple to read a XML file. The problem is that my script automatically caches the XML file. Whenever I make any changes in XML file it does not reflect in perl script. I wish to turn off caching. How can I do it?
use strict;
use WWW::Mechanize;
use DateTime;
use Time::localtime;
use XML::Simple;
use Data::Dumper;
my $xml = new XML::Simple;
my $data = $xml->XMLin("ccl_crawl_config.xml");