Skip to content

Commit

Permalink
Single Sign On initialized
Browse files Browse the repository at this point in the history
  • Loading branch information
lahin31 committed Apr 13, 2024
1 parent 097b12c commit 68d514a
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
14 changes: 12 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,13 @@
- [Section 25: Polling and Streaming](#section-25-polling-and-streaming)
- [Section 26: Message Queue](#section-26-message-queue)
- [Section 27: rpc, gRpc] (চলমান)
- [Section 28: Single Sign-On] (চলমান)
- [Section 28: Single Sign-On](#section-28-single-sign-on)
- [Section 29: Elasticsearch](#section-29-elasticsearch)
- [Section 30: Bloom Filter](#section-30-bloom-filter)
- [Section 31: Load Balancing Algorithms] (চলমান)
- [Section 32: How Live Streaming works] (চলমান)
- [Section 33: How OAuth2 works](#section-33-how-oauth2-works)
- [Section 33: Serverless Architecture]
- [Section 34: Serverless Architecture]
- [Section 35: High Availability best practices by Netflix](#section-35-high-availability-best-practices-by-netflix)
- [Section 36: Resources](#section-36-resources)

Expand Down Expand Up @@ -376,6 +376,16 @@ Message Queue প্রতিটা Task কে Asynchronously প্রসে

🔗 [**আরও পড়ুন: মেসেজ কিউ**](./sections/message-queue/README.md)

## Section 28: Single Sign-On

Single Sign-On কিংবা SSO হল একটি Authentication Mechanism। যা user কে একাধিক প্লাটফর্ম (গুগল, ফেইসবুক, টুইটার) দিয়ে Authenticate করে দেয়, একটি নির্দিষ্ট credential মাধ্যমে।

<p align="center">
<img src="./images/sso.png" alt="sso">
</p>

(বিস্তারিত চলমান)

## Section 29: Elasticsearch

এটি একটি NoSQL ভিত্তিক ডেটাবেস। মূলত এটিকে Distributed Search এবং Aggregation Engine হিসেবে ব্যবহার করা হয়। Elasticsearch এর ভিতর structured এবং unstructured data স্টোর করে রাখা যায়।
Expand Down
Binary file added images/sso.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 1 addition & 3 deletions sections/rate-limiter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,7 @@ Rate Limit ইমপ্লিমেন্ট করার জন্য এটি

### Leaky Bucket

Leaky Bucket algorithm কিন্তু Token Bucket algorithm এর মত। পার্থক্য হল Leaky Bucket algorithm এ রিকোয়েস্টগুলো একটি constant rate এ প্রসেস হয়ে থাকে।

রিকোয়েস্টগুলো FIFO মানে First-in-first-out মেনে প্রসেস হয়ে থাকে।
Leaky Bucket algorithm কিন্তু Token Bucket algorithm এর মত। পার্থক্য হল Leaky Bucket algorithm এ রিকোয়েস্টগুলো একটি constant rate এ প্রসেস হয়ে থাকে, মানে রিকোয়েস্টগুলো FIFO মানে First-in-first-out মেনে প্রসেস হয়ে থাকে।

<p align="center">
<img src="./images/leaky-bucket.png" alt="leaky bucket">
Expand Down

0 comments on commit 68d514a

Please sign in to comment.