Warning: session_start(): open(/var/lib/php/sessions/sess_7s489fpfd7og0tp0ovt0l9p75h, 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
!7
concept Page {
S url;
S mimeType;
long loadedWhen;
bool shouldLoad;
File contentsFile() {
ret javaxCachesDir("Loaded Web Pages/" + uniqueFileNameUsingMD5_80_v2(url));
}
long contentSize() { ret l(contentsFile()); }
}
cmodule MultiWebpageLoader > DynCRUD {
start {
indexConceptField(Page, 'url);
}
// API
void addURLIfNotKnown(S url) {
cset(uniq_returnIfNew Page(url), shouldLoad := true);
}
}