ConcurrentLRUCache<'K, 'V> Type
Represents Least Recently Used (LRU) cache supporting concurrency. The capacity decides how many entries to store.
Constructors
| Constructor | Description | 
            
                
              
              
                  Full Usage: 
                   
              ConcurrentLRUCache(capacity)
                  Parameters: 
 int
                    
                    Returns: ConcurrentLRUCache<'K, 'V>
                  
                   | 
          
            
 
  | 
        
Instance members
| Instance member | Description | 
            
                
              
              
                  Full Usage: 
                   
              this.Clear
                   | 
          |
            
                
              
              
                  Full Usage: 
                   
              this.Count
                  Returns: int
                  
                   | 
          
            
  | 
        
            
                
              
              
                  Full Usage: 
                   
              this.GetOrAdd
                  Parameters: 
 'K
                    
                    op : ICacheableOperation<'a, 'V>
                    
                    arg : 'a
                    
                    Returns: 'V
                  
                   | 
          
            
 
  | 
        
            B2R2