computer-scienceangular-roadmapbackend-roadmapblockchain-roadmapdba-roadmapdeveloper-roadmapdevops-roadmapfrontend-roadmapgo-roadmaphactoberfestjava-roadmapjavascript-roadmapnodejs-roadmappython-roadmapqa-roadmapreact-roadmaproadmapstudy-planvue-roadmapweb3-roadmap
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.3 KiB
34 lines
1.3 KiB
# Write-through |
|
|
|
The application uses the cache as the main data store, reading and writing data to it, while the cache is responsible for reading and writing to the database: |
|
|
|
- Application adds/updates entry in cache |
|
- Cache synchronously writes entry to data store |
|
- Return |
|
|
|
Application code: |
|
|
|
```python |
|
set_user(12345, {"foo": "bar"}) |
|
``` |
|
|
|
Cache code: |
|
|
|
```python |
|
def set_user(user_id, values): |
|
user = db.query("UPDATE Users WHERE id = {0}", user_id, values) |
|
cache.set(user_id, user) |
|
``` |
|
|
|
Write-through is a slow overall operation due to the write operation, but subsequent reads of just written data are fast. Users are generally more tolerant of latency when updating data than reading data. Data in the cache is not stale. |
|
|
|
## Disadvantages |
|
|
|
- When a new node is created due to failure or scaling, the new node will not cache entries until the entry is updated in the database. Cache-aside in conjunction with write through can mitigate this issue. |
|
- Most data written might never be read, which can be minimized with a TTL. |
|
|
|
 |
|
|
|
Have a look at the following resources to learn more: |
|
|
|
- [@article@Scalability, availability, stability, patterns](http://www.slideshare.net/jboner/scalability-availability-stability-patterns/)
|
|
|