Fl4m3Ph03n1x

Fl4m3Ph03n1x

Background

I have some references in logs and I need to transform them from text to real references so I can compare then with ets references.

Logs and Code

I have some logs that print some errors in the form of:
"Unexpected message: {#Ref<0.427740394.3330539535.243656>,badarg}",

Now, I have some references I got from using table_ref = :ets.whereis :foo. I need to convert the reference I got from the log into something I can compare against table_ref to find out if table_ref is the same as log_ref.

Question

How can I do this?

Showing Posts 1 to 5

tty

tty

I suspect you are stuck with a string comparison. Convert table_ref to string and load the ref as a string from the logs and compare.

Fl4m3Ph03n1x

Fl4m3Ph03n1x OP

Already thought about that… didn’t work out as expected:

iex(12)> to_string(:ets.whereis IEx.Pry)
** (Protocol.UndefinedError) protocol String.Chars not implemented for #Reference<0.3188431698.1701707783.210630>
    (elixir) lib/string/chars.ex:3: String.Chars.impl_for!/1
    (elixir) lib/string/chars.ex:22: String.Chars.to_string/1

From what I understand, erlang has no way of converting references to strings, which is confusing because since they are written in the logs, there must be a way of doing so.

benwilson512

benwilson512

Author of Craft GraphQL APIs in Elixir with Absinthe
iex(1)> make_ref
#Reference<0.2681540578.631242754.45080>
iex(2)> ref("0.2681540578.631242754.45080")
#Reference<0.2681540578.631242754.45080>

The ref to string conversion is just inspect, and you can do a string to ref conversion via the iex helper ref/1

Fl4m3Ph03n1x

Fl4m3Ph03n1x OP

This ref function does’t seem to be available in the Kernel module. How do I use it in code ?

benwilson512

benwilson512

Author of Craft GraphQL APIs in Elixir with Absinthe

It’s an IEX helper, so let’s go see how it works! elixir/lib/iex/lib/iex/helpers.ex at v1.8.2 · elixir-lang/elixir · GitHub

So you can call string = "0.2681540578.631242754.45080"; :erlang.list_to_ref('#Ref<#{string}>')

— All posts loaded —

Where Next? Top

Trending in Questions Top

Blokh
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
kszambelanczyk
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
Onor.io
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
Trolleger
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
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
matt-savvy
Anyone here using Honeybadger? My Honeybadger account is being overwhelmed with noise from some bots. Seeing a lot of Bandit.HTTPError...
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

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
garrison
Hobbes is a low-level distributed database for the Elixir programming language. Hobbes provides a simple, safe, and scalable storage lay...
New
mcass19
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Damirados
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge &amp; Solve. They are GUI (Emerge) and State management (S...
New
netoum
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
wintermeyer
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

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews