[PR #3515] [MERGED] Add redis cache abs #20658

Open
opened 2026-08-05 05:07:32 -04:00 by saavagebueno · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/netbirdio/netbird/pull/3515
Author: @mlsmaycon
Created: 3/15/2025
Status: Merged
Merged: 3/15/2025
Merged by: @mlsmaycon

Base: add-redis-cacheHead: add-redis-cache-abs


📝 Commits (7)

📊 Changes

11 files changed (+326 additions, -26 deletions)

View changed files

📝 go.mod (+2 -0)
📝 go.sum (+4 -2)
📝 management/server/account.go (+15 -8)
📝 management/server/account/account_manager_interface.go (+2 -3)
📝 management/server/cache/idp.go (+97 -4)
management/server/cache/idp_test.go (+135 -0)
management/server/cache/marshaler.go (+35 -0)
📝 management/server/cache/store.go (+7 -0)
📝 management/server/cache/store_test.go (+2 -2)
📝 management/server/idp/idp.go (+18 -0)
📝 management/server/user_test.go (+9 -7)

📄 Description

Describe your changes

Checklist

  • Is it a bug fix
  • Is a typo/documentation fix
  • Is a feature enhancement
  • It is a refactor
  • Created tests that fail without the change (if possible)
  • Extended the README / documentation, if necessary

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/netbirdio/netbird/pull/3515 **Author:** [@mlsmaycon](https://github.com/mlsmaycon) **Created:** 3/15/2025 **Status:** ✅ Merged **Merged:** 3/15/2025 **Merged by:** [@mlsmaycon](https://github.com/mlsmaycon) **Base:** `add-redis-cache` ← **Head:** `add-redis-cache-abs` --- ### 📝 Commits (7) - [`0ffb4df`](https://github.com/netbirdio/netbird/commit/0ffb4df3ebeb1e2f2d1387111fe43b69b72a0cc0) abstract caches - [`b256d9c`](https://github.com/netbirdio/netbird/commit/b256d9c4f957e6f91ff995c3fb3cce91859c47b8) marshal loadable - [`4eb6197`](https://github.com/netbirdio/netbird/commit/4eb61977d74b20b2bbe000d104d48c9a65076a41) cleanup implementation and docs - [`c66c154`](https://github.com/netbirdio/netbird/commit/c66c1543486c2237311dad22eb0735b4acf7b91a) update account manager - [`d86eb46`](https://github.com/netbirdio/netbird/commit/d86eb4615d4c3af7d535c9d299b0b82d7e5581f5) extract unmarshaller - [`0bac4a0`](https://github.com/netbirdio/netbird/commit/0bac4a0cb4455a7393c72d5737e2163e828d21ce) sync go mod - [`ef5f75c`](https://github.com/netbirdio/netbird/commit/ef5f75c6533c7686e3b00a4fb33d74eb8abc7188) fix ineffectual assignment ### 📊 Changes **11 files changed** (+326 additions, -26 deletions) <details> <summary>View changed files</summary> 📝 `go.mod` (+2 -0) 📝 `go.sum` (+4 -2) 📝 `management/server/account.go` (+15 -8) 📝 `management/server/account/account_manager_interface.go` (+2 -3) 📝 `management/server/cache/idp.go` (+97 -4) ➕ `management/server/cache/idp_test.go` (+135 -0) ➕ `management/server/cache/marshaler.go` (+35 -0) 📝 `management/server/cache/store.go` (+7 -0) 📝 `management/server/cache/store_test.go` (+2 -2) 📝 `management/server/idp/idp.go` (+18 -0) 📝 `management/server/user_test.go` (+9 -7) </details> ### 📄 Description ## Describe your changes ## Issue ticket number and link ### Checklist - [ ] Is it a bug fix - [ ] Is a typo/documentation fix - [ ] Is a feature enhancement - [ ] It is a refactor - [ ] Created tests that fail without the change (if possible) - [ ] Extended the README / documentation, if necessary --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
saavagebueno added the pull-request label 2026-08-05 05:07:32 -04:00
Sign in to join this conversation.
No Label pull-request
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: DYNR/netbird#20658