fireproofsocks

fireproofsocks

I am building a Phoenix app with session-based authentication. Sessions are stored in the database (for reporting/visibility/persistence) AND in ETS via Cachex. I’m working through the code that needs to run on startup that queries the database for all active sessions and loads that data into cache. I thought this would be a good opportunity to explore using streams (and tasks + async).

I came up with the following code that works in the iel shell:

import Ecto.Query, warn: false
alias Auth.Schemas.Session
alias Auth.Contexts.SessionContext
alias Auth.Repo

now = Timex.now()
query =
from s in Session,
     where: s.expires_at > ^now,
     select: s
stream = Repo.stream(query)

Repo.transaction(fn() ->
  Enum.to_list(stream)
  |> Enum.reduce(fn s, _acc ->
              SessionContext.cache_session(s)
              IO.puts("Session caching #{s.id}")
              end)
end)

That works! And I can query Cachex on the various session IDs and it returns what I would expect, i.e. SessionContext.get_from_cache("some-session-id-here") returns an :ok with my session data.

However… when I try to test that in my ExUnit tests, I get a failure. I suspect it has something to do with threads and processes and however those get spawned when running mix test, but honestly, that’s only a guess. I’ve noticed that sometimes when a function writes data to both PostGres AND to Cachex, sometimes the test can only see one of them (?!?).

Can someone shed light on why this doesn’t work in the test environment? Why does SessionContext.get_from_cache("some-session-id-here") return an :error with no session data found?
Do I have to update my mix.exs or something to make ExUnit be able to “see” what’s going on in the cache?
How can I incorporate an asynchronous task to make sure that this completes the process as quickly as possible?

Thanks for any insights!

Showing Posts 1 to 5

easco

easco

I ask for your patience as I’m going to mention something that may be tangential to your problem, but struck me when looking at your code:

where: s.expires_at > ^now

Can you compare dates using the > operator in this way? It seems that you should be using DateTime.compare (or something similar)

NobbZ

NobbZ

AFAIK ecto does allow this, as it operates on the DB rather than on datetimes.

fireproofsocks

fireproofsocks OP

Yes, that comparison works. If you would care to provide an alternate example, that would be great!

al2o3cr

al2o3cr

It sounds like you may be experiencing unexpected isolation from Ecto.Adapters.SQL.Sandbox - it’s used by default in the generated DataCase module. Each of your tests runs in a transaction which is rolled back at the end of the test, and unless you take specific steps to share the underlying database connection different processes won’t see each others updates.

Docs: Ecto.Adapters.SQL.Sandbox — Ecto SQL v3.14.0

IIRC the sharing situation is better on Elixir 1.8+ due to some plumbing changes ($callers etc).

fireproofsocks

fireproofsocks OP

I figured out a solution that satisfies my tests:

    Repo.transaction(
      fn () ->
        Enum.map(stream, &cache_session(&1))
      end
    )
— 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
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
brecabral
Documentation While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
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