Hello,
Just a question about Schema registry implementation. The schemes are stored in a LinkedHashMap, and methods to access/modify this map must be, then, synchronized. Is there any reason to use LinkedHashMap in SchemaRegistry? Do you need an specific order when inserting schemas? Or can we use a ConcurrentHashMap instead of Linked, avoiding then synchronisation? Thanks, Joan
