Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add rocksdb, elasticache #59

Merged
merged 1 commit into from
Aug 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added diagrams/2024/08/01/elasticache/1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions diagrams/2024/08/01/elasticache/diagram.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
schema-version: 0.1
# Required
name: AWS Elasticache
images:
- 1.png
attribution: https://docs.aws.amazon.com/whitepapers/latest/scale-performance-elasticache/elasticache-for-memcached.html
tags:
- cache
- aws
# Optional
author:
description: When you deploy an ElastiCache Memcached cluster, it sits in your application as a separate tier alongside your database. As mentioned previously, Amazon ElastiCache does not directly communicate with your database tier, or indeed have any particular knowledge of your database. A simplified deployment for a web application looks similar to the following diagram.
Binary file added diagrams/2024/08/02/rocksdb/1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions diagrams/2024/08/02/rocksdb/diagram.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
schema-version: 0.1
# Required
name: RocksDB
images:
- 1.png
attribution: https://github.com/facebook/rocksdb/wiki/RocksDB-Overview
tags:
- facebook
- database
# Optional
author: Ramkumar Vadivelu
description: RocksDB is a storage engine library of key-value store interface where keys and values are arbitrary byte streams. RocksDB organizes all data in sorted order and the common operations are Get(key), NewIterator(), Put(key, val), Delete(key), and SingleDelete(key).
Loading