MrYawe

MrYawe

The problem

Every time we run mix gettext.extract it recompiles our app to extract gettext messages (that’s normal) but it also recompiles the cldr backend module which is slow to compiles (more than 10s).

Can we do something to avoid cldr backend module recompilation? I don’t think this should be needed here.

How to reproduce

We can easily reproduce this with a new phoenix app and the last elixir version (1.16.2):

mix phx.new my_app --database sqlite3

Add these deps:

{:ex_cldr, "~> 2.38"},
{:ex_cldr_messages, "~> 1.0"}

Add a backend module:

defmodule MyApp.Cldr do
  use Cldr,
    locales: ["en", "de", "es", "fr", "it", "ja", "ko", "nl", "pt", "zh"],
    default_locale: "en",
    providers: [Cldr.Message]
end

Add this configuration in config.exs:

config :ex_cldr,
  default_backend: MyApp.Cldr

And now every time you run mix gettext.extract you will see:

Compiling 16 files (.ex)
Generating MyApp.Cldr for 11 locales named [:de, :en, :es, :fr, :it, ...] with a default locale named :en

What I’ve tested so far

I know that deps are only compiled once so I’ve made a small experiment: instead of putting our cldr backend module in our app, I’ve put it as local deps.

mix.exs:

{:my_app_cldr, path: "./my_app_cldr"}

config.exs:

config :ex_cldr,
  default_backend: MyAppCldr

Then in the my_app_cldr subfolder, generated using mix new my_app_cldr:

mix.exs:

defp deps do
  [
    {:ex_cldr, "~> 2.38"},
    {:ex_cldr_messages, "~> 1.0"},
  ]
end
defmodule MyAppCldr do
  use Cldr,
    locales: ["en", "de", "es", "fr", "it", "ja", "ko", "nl", "pt", "zh"],
    default_locale: "en",
    providers: [Cldr.Message]
end

And.. it seems to work :smile:
MyAppCldr is only compiled once as a deps and then I can use this module in my app but I don’t know if it’s recommended to use cldr this way.

Showing Posts 1 to 3

03juan

03juan

Long story short: no, it’s doing a full recompilation of your app:
https://github.com/elixir-gettext/gettext/blob/main/lib/mix/tasks/gettext.extract.ex#L106-L126

alexslade

alexslade

How has your experience been using Cldr like this? Did you hit any issues?

kip

kip

ex_cldr Core Team

I’ve not heard of any issues using this approach (no issues logged in GitHub and I’ve seen no other references here on the forum or slack). And I can’t see any particular reason is shouldn’t work either than if you also configure the :gettext option in your CLDR backend module. In that case you would probably have to force compile the local dependency to pick up any gettext configuration changes.

— 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
brecabral
Documentation While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
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
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

JesseHerrick
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
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
mhanberg
Hi everyone! The first release candidate for the Expert language server project is now available! We’ve published a press release detai...
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

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews