- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for weighted_random (0.06 seconds)
-
docs/smb3-features/03-multi-channel-design.md
private LoadBalancingStrategy strategy; public enum LoadBalancingStrategy { ROUND_ROBIN, // Rotate through channels LEAST_LOADED, // Select least busy channel WEIGHTED_RANDOM, // Random selection weighted by score AFFINITY_BASED, // Stick to same channel for related operations ADAPTIVE // Dynamically adjust based on performance }Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 02:53:50 GMT 2025 - 39.6K bytes - Click Count (0) -
src/main/java/jcifs/Configuration.java
/** * Load balancing strategy for multi-channel * * Property {@code jcifs.smb.client.loadBalancingStrategy} (String, default "adaptive") * Values: "round_robin", "least_loaded", "weighted_random", "affinity_based", "adaptive" * * @return load balancing strategy */ String getLoadBalancingStrategy(); /** * Channel health check interval in seconds *Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 25.4K bytes - Click Count (0)