I have a static class with a static List inside of it.
public static class Translations {
public static List<string> Resources {get; set;}
}
Does it make sense to MemoryCache that List? Or by being static is already kept in memory, the same list for all users and there's no need to memcache it?