AWS S3 Cloud Cache API
This engine implements the cache interface for AWS S3, natively supporting memory-safe streaming, compression, and TTL metadata expiration.
etl_pycache.s3_cache.S3Cache
Bases: BaseCache
An AWS S3 backend for the caching engine. Supports polymorphic payloads, massive streaming, TTL expiration, and native compression.
Source code in src/etl_pycache/s3_cache.py
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 | |
__init__(bucket_name, client=None)
Initializes the S3 Cache instance.
Source code in src/etl_pycache/s3_cache.py
46 47 48 49 50 51 | |
delete(key)
Deletes the object from the S3 bucket.
Source code in src/etl_pycache/s3_cache.py
128 129 130 | |
get(key)
Retrieves the object from S3, enforcing TTL expiration and automatic decompression.
Source code in src/etl_pycache/s3_cache.py
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 | |
get_stream(key)
Retrieves a streaming connection to the S3 object, enforcing TTL expiration.
Source code in src/etl_pycache/s3_cache.py
109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 | |
set(key, payload, ttl_seconds=None, compress=False)
Orchestrates the serialization and upload of polymorphic payloads to S3.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
key
|
str
|
The unique identifier for the cache entry. |
required |
payload
|
PayloadType
|
The string, dict, bytes, or stream to upload. |
required |
ttl_seconds
|
int | None
|
The Time-To-Live in seconds. |
None
|
compress
|
bool
|
If True, natively compresses the payload before network transmission to save S3 storage costs. Defaults to False. |
False
|
Source code in src/etl_pycache/s3_cache.py
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 | |