jononomo

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.

Showing Posts 1 to 7

kokolegorille

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

jononomo OP

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:

assign(socket, key, value)
    Adds key/value pair to socket assigns

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

NobbZ

There is a similar concept in :plugs conn-struct.

Its a generic mechanism of making both extendable and carry around that is special to the application.

dom

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

LostKobrakai

“Assigns” is basically the data backpack of the socket or Plug.Conn connection. 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.

11
Post #5
josevalim

josevalim

Creator of Elixir

Imagine you want to pass some value from your join function in channels to handle_in. You cannot simply assign to a variable:

def join(..., socket) do
  username = "hello"
  {:ok, socket}
end

def handle_in(..., socket) do
  username #=> this will raise
end

So instead, we store it in a data-structure (or assign it to a data structure) and pass the data structure forward:

def join(..., socket) do
  socket = assign(socket, :username, "hello")
  {:ok, socket}
end

def handle_in(..., socket) do
  socket.assigns.username #=> this works
end

The field in itself is a map with atom keys and the stored values.

20
Post #6
ElixirCasts

ElixirCasts

Forum Sponsor

For anyone looking for a simple walkthrough of using “assigns”, I made a screencast about just that:

https://elixircasts.io/exploring-phoenix-assigns

— All posts loaded —

Where Next? Top

Trending in Questions Top

RSP87
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
nseaSeb
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
RemyXRenard
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
brecabral
Documentation While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
velrest
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
samoloth
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
FlyingNoodle
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 Top

mudasobwa
I am happy to introduce the very α version of the new programming language compiled to BEAM. Welcome Cure. It has literally three kille...
New
marciok
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
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Dmk
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
netoum
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
webofbits
With AI doing more of the implementation work, I’ve been wondering how much coding I should deliberately keep doing myself. My main conc...
#ai
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews