| Aspect | Current (Tunnel) | Native via Tailscale | Resilient Native | Tunnel Optimized |
|---|---|---|---|---|
| Tailscale Down Impact | None | High | Medium | None |
| Performance | Medium | High | High | Medium |
| Multi-node Ready | Yes | Yes (via TS) | Yes | Yes |
| External Access | Yes | Yes | Yes | Yes |
| Complexity | Low | Medium | Medium | Low |
| MTU | 1230 | 1280 | 1280 | 1230 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package datatype_util | |
| import ( | |
| "encoding/json" | |
| "errors" | |
| ) | |
| // JsonList represents a JSON-encoded list in a string format. | |
| // It uses a generic type T to allow for any type supported by json.Unmarshal. | |
| type JsonList[T any] string |