Python Go question in authentik #16730
-
I see a lot of the codebase is using python. But there's also some go. When my Go REST/Graphql backend talks to authentik, which language is used on the authentik side? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Authentik mostly uses python for its backend logic. Even if your Go backend talks to it, the main code running on the authentik side is python. Python may be slower than Go but it’s great for flexibility and features. If performance becomes a problem you could try caching or async calls to help speed things up. tech is like cooking bro speed matters but flavour (i mean features) wins heart. |
Beta Was this translation helpful? Give feedback.
Authentik mostly uses python for its backend logic. Even if your Go backend talks to it, the main code running on the authentik side is python. Python may be slower than Go but it’s great for flexibility and features. If performance becomes a problem you could try caching or async calls to help speed things up. tech is like cooking bro speed matters but flavour (i mean features) wins heart.