server : test alternative LRU logic

This commit is contained in:
Georgi Gerganov
2025-07-29 21:19:21 +03:00
parent b77d11179d
commit b98f80a6b4

View File

@@ -2188,6 +2188,7 @@ struct server_context {
if (!ret || slot.t_last_used <= t_last) {
t_last = slot.t_last_used;
ret = &slot;
break; // TMP: always pick the first non-processing slot
}
}