modelexpress-server 0.4.0

High-performance gRPC server for model serving and management
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
// SPDX-License-Identifier: Apache-2.0

//! Distributed model registry: model-download lifecycle (`DOWNLOADING` / `DOWNLOADED` /
//! `ERROR`) and LRU cache-eviction timestamps.
//!
//! `backend` owns the `RegistryBackend` trait plus Redis and Kubernetes CRD
//! implementations. `state` wraps the backend in a lazy-connect manager used by
//! `ModelDownloadTracker` and `CacheEvictionService`.

pub mod backend;
pub mod k8s_types;
pub mod state;