Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 208201
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T17:48:14+00:00 2026-05-11T17:48:14+00:00

For methods where … there exists a static one-to-one mapping between the input and

  • 0

For methods where …

  • there exists a static one-to-one mapping between the input and the output, and
  • the cost of creating the output object is relatively high, and
  • the method is called repeatedly with the same input

… there is a need for caching result values.

In my code the following result value caching pattern is repeated a lot (pseudo-code in Java, but the question is language-agnostic):

private static Map<Input, Output> fooResultMap = new HashMap<Input, Output>();
public getFoo(Input input) {
  if (fooResultMap.get(input) != null) {
    return fooResultMap.get(input);
  }
  Output output = null;
  // Some code to obtain the object since we don't have it in the cache.
  fooResultMap.put(input, output);
  return output;
}

Repeating this structure all the time is a clear violation of the DRY principle.

Ideally, I’d like the code above to be reduced to the following:

@CacheResult
public getFoo(Input input) {
  Output output = null;
  // Some code to obtain the object since we don't have it in the cache.
  return output;
}

Where the theoretical CacheResult annotation would take care of the caching I’m currently doing by hand.

The general term for this type of caching is “memoization“.

A good example of the exact functionality I’m looking for is Perl core module “Memoize”.

In which languages does such a Memoize-like caching solution exist (either at the language level or the library level)? In particular – does such a solution exist for any major platform such as Java or .NET?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-11T17:48:15+00:00Added an answer on May 11, 2026 at 5:48 pm

    Not a language built-in, put the CPAN module Memoize is reasonably popular in Perl land, I think:

       # Compute Fibonacci numbers
        sub fib {
          my $n = shift;
          return $n if $n < 2;
          fib($n-1) + fib($n-2);
        }
    
        use Memoize;
        memoize('fib');
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 105k
  • Answers 105k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer about """If I delete the quotes sourronding the ?, it… May 11, 2026 at 8:39 pm
  • Editorial Team
    Editorial Team added an answer The Internet knows plenty of these (archive) Or, check the… May 11, 2026 at 8:39 pm
  • Editorial Team
    Editorial Team added an answer This probably occurs because You are using LDAP libraries/contexts to… May 11, 2026 at 8:39 pm

Related Questions

I'm writing some software that targets two versions of very similar hardware which, until
Where can I find a Visual Studio plug-in that automatically generates documentation header for
I'm doing a raytracer hobby project, and originally I was using structs for my
When an Expression<T> is compiled, is the resultant code implicitly cached by the framework?
Duplicate: Difference between events and delegates and its respective applications What are the advantages

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.