Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Given the following multiton:

public class Multiton 
{
    private static final Multiton[] instances = new Multiton[...];

    private Multiton(...) 
    {
        //...
    }

    public static Multiton getInstance(int which) 
    {
        if(instances[which] == null) 
        {
            instances[which] = new Multiton(...);
        }

        return instances[which];
    }
}

How can we keep it thread safe and lazy without the expensive synchronization of the getInstance() method and the controversy of double-checked locking? An effective way for singletons is mentioned here but that doesn't seem to extend to multitons.

share|improve this question
2  
You know I heard there is this technique called never using global mutable state (except when frameworks force you to). – Longpoke Jun 20 '12 at 19:37
4  
Do you have any evidence that the "expensive" (but really simple to get right) synchronization of the getInstance method would actually be significant in your application? – Jon Skeet Jun 20 '12 at 19:43
No, this is primarily an academic exercise. Since Singleton synchronization already seems to be a debated topic, I was wondering if the internal-class workaround for Singletons extends in any way to Multitons. – donnyton Jun 20 '12 at 21:04

3 Answers

up vote 3 down vote accepted

This will give provide you a threadsafe storage mechanism for your Multitons. The only downside is that it is possible to create a Multiton that will not be used in the putIfAbsent() call. The possibility is small but it does it exist. Of course on the remote chance it does happen, it still causes no harm.

On the plus side, there is no preallocation or initialization required and no predefined size restrictions.

private static ConcurrentHashMap<Integer, Multiton> instances = new ConcurrentHashMap<Integer, Multiton>();

public static Multiton getInstance(int which) 
{
    Multiton result = instances.get(which);

    if (result == null) 
    {
        result = instances.putIfAbsent(which, new Multiton(...));
    }

    return result;
}
share|improve this answer

You could use an array of locks, to at least be able to get different instances concurrently:

private static final Multiton[] instances = new Multiton[...];
private static final Object[] locks = new Object[instances.length];

static {
    for (int i = 0; i < locks.length; i++) {
        locks[i] = new Object();
    }
}

private Multiton(...) {
    //...
}

public static Multiton getInstance(int which) {
    synchronized(locks[which]) {
        if(instances[which] == null) {
            instances[which] = new Multiton(...);
        }
        return instances[which];
    }
}
share|improve this answer
Just beware that it's much harder to write the non-blocking version for this, because of volatile array semantics. – Voo Jun 20 '12 at 19:59
This will allow you to get different instances concurrently, but is there any workaround to the unnecessary synchronization around the individual instances? It seems like we are back to the double-checked locking dilemma at this point. – donnyton Jun 20 '12 at 21:03
2  
The simplest workaround is to eagerly initialize all the instances. This is the simplest solution, and is the best one in many cases. If lazyness is an absolute requirement, first make sure that the simple synchronization constitutes a performance problem before trying to optimize it. Synchronization is fast, or at least much much faster than IO, database access, interprocess calls, O(n^2) algorithms, etc. Don't preoptimize. It's the root of all evil. – JB Nizet Jun 20 '12 at 21:07

You're looking for an AtomicReferenceArray.

public class Multiton {
  private static final AtomicReferenceArray<Multiton> instances = new AtomicReferenceArray<Multiton>(1000);

  private Multiton() {
  }

  public static Multiton getInstance(int which) {
    // One there already?
    Multiton it = instances.get(which);
    if (it == null) {
      // Lazy make.
      Multiton newIt = new Multiton();
      // Successful put?
      if ( instances.compareAndSet(which, null, newIt) ) {
        // Yes!
        it = newIt;
      } else {
        // One appeared as if by magic (another thread got there first).
        it = instances.get(which);
      }
    }

    return it;
  }
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.