All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.wujun728.sql.engine.Cache Maven / Gradle / Ivy

The newest version!
package io.github.wujun728.sql.engine;

import java.util.concurrent.ConcurrentHashMap;

import io.github.wujun728.sql.node.SqlNode;


public class Cache {

    ConcurrentHashMap nodeCache = new ConcurrentHashMap<>();

    public ConcurrentHashMap getNodeCache() {
        return nodeCache;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy