6 releases (3 breaking)

new 0.5.2 May 5, 2024
0.5.1 Jan 23, 2021
0.5.0 May 6, 2020
0.4.0 Mar 10, 2020
0.2.0 Feb 13, 2020

#136 in Internationalization (i18n)

Download history 23337/week @ 2024-01-21 28382/week @ 2024-01-28 33176/week @ 2024-02-04 31282/week @ 2024-02-11 32780/week @ 2024-02-18 28758/week @ 2024-02-25 31043/week @ 2024-03-03 31595/week @ 2024-03-10 31144/week @ 2024-03-17 35586/week @ 2024-03-24 33143/week @ 2024-03-31 29143/week @ 2024-04-07 33304/week @ 2024-04-14 31124/week @ 2024-04-21 32987/week @ 2024-04-28 35691/week @ 2024-05-05

136,530 downloads per month
Used in 192 crates (24 directly)

Apache-2.0 OR MIT

22KB
178 lines

IntlMemoizer

intl-memoizer is a crate designed to handle lazy-initialized references to intl formatters.

The assumption is that allocating a new formatter instance is costly, and such instance is read-only during its life time, with constructor being expensive, and format/select calls being cheap.

In result it pays off to use a singleton to manage memoization of all instances of intl APIs such as PluralRules, DateTimeFormatetc. between allFluentBundle` instances.

Usage

The following is a high-level example of how this works, for running examples see the docs

/// Internationalization formatter should implement the Memoizable trait.
impl Memoizable for NumberFormat {
  ...
}

// The main memoizer has weak references to all of the per-language memoizers.
let mut memoizer = IntlMemoizer::default();

// The formatter memoziation happens per-locale.
let lang = "en-US".parse().expect("Failed to parse.");
let lang_memoizer: Rc<IntlLangMemoizer> = memoizer.get_for_lang(en_us);

// Run the formatter

let options: NumberFormatOptions {
    minimum_fraction_digits: 3,
    maximum_fraction_digits: 5,
};

// Format pi with the options. This will lazily construct the NumberFormat.
let pi = lang_memoizer
    .with_try_get::<NumberFormat, _, _>((options,), |nf| nf.format(3.141592653))
    .unwrap()

// The example formatter constructs a string with diagnostic information about
// the configuration.
assert_eq!(text, "3.14159");

// Running it again will use the previous formatter.
let two = lang_memoizer
    .with_try_get::<NumberFormat, _, _>((options,), |nf| nf.format(2.0))
    .unwrap()

assert_eq!(text, "2.000");

Get Involved

fluent-rs is open-source, licensed under both the Apache 2.0 and MIT licenses. We encourage everyone to take a look at our code and we'll listen to your feedback.

Discuss

We'd love to hear your thoughts on Project Fluent! Whether you're a localizer looking for a better way to express yourself in your language, or a developer trying to make your app localizable and multilingual, or a hacker looking for a project to contribute to, please do get in touch on the mailing list and the IRC channel.

Dependencies

~1–1.5MB
~32K SLoC