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.

I am implementing caching using hashmap in a singleton class.

Below mentioned is a code snippet.

public class CacheHelperNew {

private static HashMap cMap; 
private static CacheHelperNew instance = null;

static Logger mLogger = Logger.getLogger(CacheHelperNew.class);
private CacheHelperNew(BDDObject savingObject)
{ 
List<String> inActiveStudyPhaseTypes = inActiveStudyPhaseTypes(savingObject);
HashMap<String, List<String>> inActiveLOVMap = new HashMap<String, List<String>>();
inActiveLOVMap.put(
ClinicalStudyConstants.FIELD_STUDY_STRUCT_STUDY_PHASE,
inActiveStudyPhaseTypes);

}

}

--> The inActiveStudyPhaseTypes is accessed from the DB in runtime through the savingobject which is passed in runtime. This can also be modified by the user from UI screen. The code snippet for that is mentioned below.

{
ArrayList<String> pChangedColumns = new ArrayList<String>();

pChangedColumns.addAll(savingObject.getChangedColumns());
Iterator<String> iter = pChangedColumns.iterator();

if (iter.hasNext()) {
String strr = (String) iter.next();
mLogger.info("In pChangedColumns list" + strr);

if (IDDConstants.IDD_STUDY_REF_TYPE_NAME.equalsIgnoreCase(strr)) {

if (inactiveStudyRefTypes.contains(studyRefTypes)) {

return new OperationResult(new OperationExecutionError(
"SIP-37006", new String[] { msg },
getLocalizationGate()));

}

}

}
}

The thing is that in case, it's modified by the user, I have to update the cache. As per my info, to implement it, I have to write a method in the CacheHelperNew class for that and I have to pass a reference from the UI code to that class.

Is my info correct? If so, then how to write that method and how to update data in cache from UI code?

I have added a method to the cache class lately

public void addCache(String key, List<String> value)
{

HashMap<String, List<String>> newMap = new HashMap<String, List<String>>(inActiveLOVMap);

newMap.put(key, value);
inActiveLOVMap = newMap;
}
share|improve this question
Generally GUI shouldn't know anything about caching. Caching is a part of business logic layer. For example if there's a button to fetch and display list of all employees from remote service (and it takes several seconds) it may be cached (by the service class which fetch list) and next time displayed immediately. – ragnor Aug 6 '12 at 5:37

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.