Warning: session_start(): open(/var/lib/php/sessions/sess_dok8r5sp9nr2a6lf6bhpvbkcfi, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51
Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
static SuffixTree_managed loadOnDiskSuffixTree(File treeFile, File textFile) {
bool toUpper = true;
CloseableCharSequence text1 = iso8859_readOnlyFileAsCharSequence(textFile, noToString := true);
CharSequence text = toUpper ? virtualToUpper(text1) : text1;
print(l(text));
IIntMemory mem = ROMIntMemoryFromFile(treeFile);
print(mem.size());
SuffixTree_managed tree = new(mem, 1);
tree.fullText = text;
tree.dependentCloseables = ll(text1, optCast AutoCloseable(mem));
ret tree;
}