This looks like a module I'd love to use. But it indexes files, and my problem is that the text passages against which I want to run queries don't exist in files. They're created on the fly—thousands of short passages. In my script, they exist as scalars. Is there any way to run a Google-like (or SWISH-like) query against them, given that they don't exist as files?
Thanks, --John
| [reply] |
print "Path-Name: $file\n",
"Document-Type: TXT*\n",
"Content-Length: $size\n\n";
print $data;
So, unless you want to put your text snippets into files, there'll be some additional work involved, but it should be easy.
| [reply] [d/l] [select] |