diff --git a/README.md b/README.md index f035c21..96cc784 100644 --- a/README.md +++ b/README.md @@ -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) @@ -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 মাধ্যমে। + +

+ sso +

+ +(বিস্তারিত চলমান) + ## Section 29: Elasticsearch এটি একটি NoSQL ভিত্তিক ডেটাবেস। মূলত এটিকে Distributed Search এবং Aggregation Engine হিসেবে ব্যবহার করা হয়। Elasticsearch এর ভিতর structured এবং unstructured data স্টোর করে রাখা যায়। diff --git a/images/sso.png b/images/sso.png new file mode 100644 index 0000000..a77e3fc Binary files /dev/null and b/images/sso.png differ diff --git a/sections/rate-limiter/README.md b/sections/rate-limiter/README.md index 23f9145..f08b54d 100644 --- a/sections/rate-limiter/README.md +++ b/sections/rate-limiter/README.md @@ -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 মেনে প্রসেস হয়ে থাকে।

leaky bucket