dokuzbir
I have a slot booking app. What i want is lock a slot 5 minutes for a session/user. I added lock_until, locked_for attributes to slots. A user has id, but what is equivalent thing for a session. Also if there are another approaches can you please share?
Trending in Questions
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
New
Kia ora,
We have been using elixir-google-api to connect to Google Drive. However, with the updates to Tesla due to CVEs this is now bro...
New
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
New
I have what I’ve heard referred to as a “lookup table” in my database. This is a way of assigning codes to common values. One common lo...
New
Hello,
I’m developing a online persistent chat system (what’s app) like using elixir/dynamodb/aws for a mobile app(flutter).
The diffic...
New
What approach to take when sending live updates to “random” users Hi! I have a question, I have a little chat app, and when I create a DM...
New
Other Trending Topics
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
There are three potential reasons for members of this forum to have a look at https://vutuv.de
You are tired or annoyed of LinkedIn.
Yo...
New
Latest Phoenix Threads
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #ai
- #phoenix_html
- #iex
- #elixirconf-us
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming











Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
mgwidmann
I’m not sure what a slot booking app is, could you clarify what you’re trying to do a bit more? Are you trying to ensure a user in a Phoenix application gets logged out every 5 minutes?
kokolegorille
There is a slot locking mecanism in this video
around 25 minutes… If this is what You are looking for.
Basically You want to lock a slot for a booking application for 5 minutes? Probably because each booking reduces the capacity of your stock, and You don’t want to sell more than what You can provide.
He wants to lock a timeslot for a user to order something, so no other user could bypass this by typing faster. There is not even the need to store lock_until, just spawn a process with locked_for, and a timeout. As soon as the process expire, so does the lock.
Each resource has a capacity, when You want to book, You request an access, that will decrement capacity, in case You don’t fill the booking in 5 minutes, the token expires without being used, and capacity is increased.
Is that what You want to do?
dokuzbir
I am trying to avoid concurrent data access. Like a cart timeout and decrease quantity when a item added in a cart. But i don’t want to use serverside cart because users will choose only on slot, also if i use cart i will need to delete inactive carts with cron job. That is only want to lock a slot 5 minutes for a user and session so while a user progressing payment another users wont able buy that slot. My problem is that i am able to that with a user because a user has a id. So i can lock a slot for user. But how can i able to do that with a guest session.Has a session unique id or something? Server side can determine a difference of sessions as a user? Sometimes i dont know limits of programing. Maybe completely meaningless question..
@kokolegorille i will check it thanks.
dokuzbir
Yes this is exactly what i want. Looks like this case is great for dive in genserver, ets.
Also still i dont know how to achieve that from server side for a guest session ?
NobbZ
The trick with such identifiers is, that you can use whatever you like and write it into the session…
I’m not experienced with phoenix, but have you considered using it roughly like this?
You can store and retrieve that Token via
Plug.Conn.{fetch,get,put}_session.dokuzbir
I never thought this would be easy like that. Just store a thing make session unique… really thanks.
Qqwy
Instead of using an UUID, you could use
make_ref() |> :erlang.term_to_binary()to create a string-representation of an almost surely unique reference (The keyspace is 2^82), whose behaviour is provided to you by the Erlang VM.NobbZ
I’ve chosen UUID in my example as it is widely known and understood.
Of course on can choose any mechanisms one likes, even a simple counter is possible.
LostKobrakai
You could also put the slot id for the user in a phoenix token even with a timeout for the token to be valid. You could give that to the client and let it represent it for the final booking or just use the session to keep it around.
kokolegorille
With a token expiry it is harder to manage stock quantity, because it is hard to detect when a token expires when not used.