Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for batchExists (0.05 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. docs/smb3-features/04-directory-leasing-design.md

    ## 7. Performance Optimizations
    
    ### 7.1 Batch Directory Operations
    ```java
    public class BatchDirectoryOperations {
        private final DirectoryLeaseManager leaseManager;
        
        public List<SmbFile> batchExists(List<String> paths) {
            // Group paths by parent directory
            Map<String, List<String>> pathsByParent = paths.stream()
                .collect(Collectors.groupingBy(this::getParentPath));
            
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 02:53:50 GMT 2025
    - 36.2K bytes
    - Click Count (0)
Back to Top