jononomo
Can anyone point me to some resources to understand the “assigns” functionality. I see it used in Phoenix Channels, but am not sure what is happening under the hood. Thanks.
Trending in Questions
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
Hello,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
With AI doing more of the implementation work, I’ve been wondering how much coding I should deliberately keep doing myself.
My main conc...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixirconf-us
- #ai
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 7- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
kokolegorille
Assigns belongs to socket structure as seen here.
assigns allows to set socket assigns value.
As each socket is independant from each others, it is used to store info for a dedicated socket.
eg. Storing user data, or any other related data.
jononomo
Thanks for your response, @kokolegorille. I’m still not entirely clear on “assigns”, however. All the definitions and docs I see seem to have recursive definitions.
For instance, you wrote “assigns allows to set socket assigns value”. And in the link to the docs that you gave me I see definitions like the following:
Is “assign” ever used outside of sockets? Is it something like a dictionary of key-values? If it is just a dictionary of key-values, then why is it limited to sockets?
Thanks.
NobbZ
There is a similar concept in
:plugsconn-struct.Its a generic mechanism of making both extendable and carry around that is special to the application.
dom
Channels are processes (GenServer), so they have a state, which is the Socket struct. “assigns” is one field of that struct which Phoenix provides for you to store app-specific data. For instance you could store a user ID in assigns when the channel is created (
join), then access it later when you receive messages (handle_in), in order to tell who sent it. It’s a plain old map.LostKobrakai
“Assigns” is basically the data backpack of the
socketorPlug.Connconnection. You’d use it to hold onto data, which you’ll need throughout the lifetime of that connection. One example would be the authentication status (current user). It’s kinda like the session mechanic for http requests, but the session is used to store data between multiple request, while assigns store data for usage within a single request.josevalim
Imagine you want to pass some value from your
joinfunction in channels tohandle_in. You cannot simply assign to a variable:So instead, we store it in a data-structure (or assign it to a data structure) and pass the data structure forward:
The field in itself is a map with atom keys and the stored values.
ElixirCasts
For anyone looking for a simple walkthrough of using “assigns”, I made a screencast about just that:
https://elixircasts.io/exploring-phoenix-assigns