Configure cache process aliases
masterWhile you can use the PID returned by start_link, it is standard practice to use an alias. You can register the cache locally, globally, or via a module (like gproc).
# Local registration
ConCache.start_link([], name: :my_cache)
# Global registration
ConCache.start_link([], name: {:global, :my_cache})
# Via module (e.g., gproc)
ConCache.start_link([], name: {:via, :gproc, :my_cache})
ConCache.put({:via, :gproc, :my_cache}, :some_key, :some_value)