Warning: session_start(): open(/var/lib/php/sessions/sess_pqlchnaenor4j604nvk1rscjss, 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 new ThreadLocal findConceptWhere_debug_scanned;
static A findConceptWhere_debug(Class c, O... params) {
ret findConceptWhere(mainConcepts, c, params);
}
static A findConceptWhere_debug(Concepts concepts, Class c, O... params) {
params = expandParams(c, params);
int scanned = 0;
try {
// indexed
if (concepts.fieldIndices != null)
for (int i = 0; i < l(params); i += 2) {
IFieldIndex index = concepts.getFieldIndex(c, (S) params[i]);
if (index != null)
for (A x : index.getAll(params[i+1])) {
++scanned;
if (checkConceptFields(x, params)) ret x;
}
}
// table scan
for (A x : concepts.list(c)) if (checkConceptFields(x, params)) ret x;
null;
} finally {
addToLongThreadLocal(findConceptWhere_debug_scanned, scanned);
}
}
static Concept findConceptWhere_debug(Concepts concepts, S c, O... params) {
int scanned = 0;
try {
for (Concept x : concepts.list(c)) { ++scanned; if (checkConceptFields(x, params)) ret x; }
null;
} finally {
addToLongThreadLocal(findConceptWhere_debug_scanned, scanned);
}
}