fireproofsocks

fireproofsocks

Defining multiple instances of Cachex?

I’m working with Cachex to cache several types of data and I started running into problems with duplicate keys. I figured there are 2 solutions to that:

  1. Add prefixes to the keys.
  2. Start multiple instances of Cachex

Adding prefixes to provide a kind of “namespace” is simple enough, but it’s a bit smelly when using fetch and you provide a callback: the callback function will receive as its argument the namespaced key that was looked for. In my case, I would have to strip off that namespace prefix before I could do anything with that key.

When I tried to start up multiple instance of Cachex in my application, I thought I could just add multiple child workers per https://hexdocs.pm/cachex/getting-started.html#starting-your-cache

children = [
  supervisor(MyApp.Repo, []),
  # Namespaces for cache instances
  worker(Cachex, [:foo_cache, []]),
  worker(Cachex, [:bar_cache, []]),
]

opts = [strategy: :one_for_one, name: MyApp.Supervisor]
Supervisor.start_link(children, opts)

But trying to run the app in that configuration generates an error:

** (Mix) Could not start application my_app: MyApp.Application.start(:normal, ) returned an error: bad child specification, more than one child specification has the id: Cachex.
If using maps as child specifications, make sure the :id keys are unique.
If using a module or {module, arg} as child, use Supervisor.child_spec/2 to change the :id, for example:

children = [
  Supervisor.child_spec({MyWorker, arg}, id: :my_worker_1),
  Supervisor.child_spec({MyWorker, arg}, id: :my_worker_2)
]

I’ve tried adapting my arguments to the format suggested by that error message to something like this:

children = [
    Supervisor.child_spec({Cachex, [:foo_cache, []]}, id: :cachex1),
    Supervisor.child_spec({Cachex, [:bar_cache, []]}, id: :cachex2),
]

but that generates a different error:

** (Mix) Could not start application auth: MyApp.Application.start(:normal, []) returned an error: shutdown: failed to start child: :foo_cache
    ** (EXIT) :invalid_name

Is it bad practice to try and spin up multiple instances of Cachex? Should I just suck it up and deal with manually prefixing keys? Or can someone show me how to properly declare multiple Cachex instances in my supervisor?

Thanks!

Marked As Solved

drl123

drl123

Had this problem too and Whitfin helped me get it going. You need to give the workers an id after the options that matches the cache name. Do something like this:

worker(Cachex, [:temp_cache, [expiration: expiration(default: :timer.minutes(10))]], id: :temp_cache),
worker(Cachex, [:main_cache, []], id: :main_cache),

This worked fine in my app. I needed on with a fixed/short TTL and another that was long-lived.

Also Liked

fireproofsocks

fireproofsocks

Ah, I think figured it out:

worker(Cachex, [:foo_cache, []], id: :cachex_1),
worker(Cachex, [:bar_cache, []], id: :cachex_2),

But is that a good idea?

OvermindDL1

OvermindDL1

It’s a fine idea. I have like 4 cache’s in my big project. ^.^;

factoryd

factoryd

I have like at least 12. haha

Last Post!

OvermindDL1

OvermindDL1

Lol, wow, nice! ^.^

Where Next?

Popular in Questions Top

vonH
In asking this question I am more interested about the expressiveness of the language itself and less concerned about the availability of...
New
Emily
I have VueJS GUIs with the project generated using Webpack. I have Elixir modules that will need to be used by the VueJS GUIs. I forese...
New
lanycrost
Hi everyone! I need implement if…else if…else condition from my elixir code, and anymore of this control flow structures not work proper...
New
ashish173
I am using Ecto timestamps with postgres, I can see the timestamps() use the :naive_dateime but for my use case I wanted to store the ti...
New
nsuchy
Hi. I’ve noticed that Windows Powershell has it’s own IEX command and you cannot access Elixir’s IEX due to the conflict. This isn’t a cr...
New
belgoros
I’m not a pro in using Regex and can’t figure out why the following behaviour happens, especially if we take into account the difference ...
New
svb
Hi! Currently I want to submit a form by pressing the Enter key. However, since my input field is of type “textarea” this is just adds a...
New

Other popular topics Top

nobody
Hi! In PHP: $_SERVER[‘SERVER_ADDR’] - in Elixir? Searched the docs for ip address and the web, no good results. Thanks!
New
New
Darmani72
If I have a post route which an argument: post /my_post_route/:my_param1, MyController.my_post_handler How would get the post params ...
New
dogweather
I wrote this comment on r/haskell, and it’s not popular there. :wink: But I think I’m on to something… Haskell reminds me of Java, and e...
New
dblack
I’ve got an issue with an app and I’ve no idea of how to troubleshoot it. I’m hoping someone here might have seen something similar. I p...
New
romenigld
I am trying to run a deploy with docker and I successfully runned with this command: docker build -t romenigld/blog-prod . but when I t...
New

We're in Beta

About us Mission Statement