Put a object into the cache. @param id: The object ID. @type id: str @param object: The object to add. @type object: any
(self, id, object)
| 61 | raise Exception('not-implemented') |
| 62 | |
| 63 | def put(self, id, object): |
| 64 | """ |
| 65 | Put a object into the cache. |
| 66 | @param id: The object ID. |
| 67 | @type id: str |
| 68 | @param object: The object to add. |
| 69 | @type object: any |
| 70 | """ |
| 71 | raise Exception('not-implemented') |
| 72 | |
| 73 | def putf(self, id, fp): |
| 74 | """ |