Subject: | You cannot use constant DIRECTORY => "/tmp/testindex/$$"; |
You cannot assume that /tmp is there and writable
Please change
use constant DIRECTORY => "/tmp/testindex/$$";
to
use File::Spec;
use constant DIRECTORY => File::Spec->tmpdir();
Thanks