Package suds :: Module cache :: Class NoCache
[hide private]
[frames] | no frames]

Class NoCache

source code

Cache --+
        |
       NoCache

The passthru object cache.

Instance Methods [hide private]
any
get(self, id)
Get a object from the cache by ID.
source code
any
getf(self, id)
Get a object from the cache by ID.
source code
 
put(self, id, object)
Put a object into the cache.
source code
 
putf(self, id, fp)
Write a fp into the cache.
source code

Inherited from Cache: clear, purge

Method Details [hide private]

get(self, id)

source code 

Get a object from the cache by ID.

Parameters:
  • id - The object ID.
Returns: any
The object, else None
Overrides: Cache.get
(inherited documentation)

getf(self, id)

source code 

Get a object from the cache by ID.

Parameters:
  • id - The object ID.
Returns: any
The object, else None
Overrides: Cache.getf
(inherited documentation)

put(self, id, object)

source code 

Put a object into the cache.

Parameters:
  • id - The object ID.
  • object - The object to add.
Overrides: Cache.put
(inherited documentation)

putf(self, id, fp)

source code 

Write a fp into the cache.

Parameters:
  • id - The object ID.
  • fp - File pointer.
Overrides: Cache.putf
(inherited documentation)