Removed deprecated memcache class.

This commit is contained in:
MobiusDev 2017-07-19 22:00:14 +00:00
parent a20a220645
commit 7f00e2bbcb

View File

@ -1,96 +0,0 @@
/*
* This file is part of the L2J Mobius project.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package com.l2jmobius.util;
import java.util.HashMap;
import java.util.logging.Logger;
@Deprecated
public class memcache
{
private static Logger _log = Logger.getLogger(memcache.class.getName());
private final HashMap<Integer, String> _hms;
private final HashMap<Integer, Integer> _hmi;
private final HashMap<Integer, Long> _last_access;
private static final memcache _instance = new memcache();
public static memcache getInstance()
{
return _instance;
}
private memcache()
{
_hms = new HashMap<>();
_hmi = new HashMap<>();
_last_access = new HashMap<>();
}
private void check_expired()
{
for (final Integer k : _hmi.keySet())
{
if ((_last_access.get(k) + 3600000) < System.currentTimeMillis())
{
// _hmi.remove(k);
// _last_access.remove(k);
}
}
for (final Integer k : _hms.keySet())
{
if ((_last_access.get(k) + 3600000) < System.currentTimeMillis())
{
// _hms.remove(k);
// _last_access.remove(k);
}
}
}
public void set(String type, String key, int value)
{
final int hash = (type + "->" + key).hashCode();
// _log.fine("Set memcache "+type+"("+key+")["+hash+"] to "+value);
_hmi.put(hash, value);
_last_access.put(hash, System.currentTimeMillis());
check_expired();
}
public boolean is_set(String type, String key)
{
final int hash = (type + "->" + key).hashCode();
final boolean exists = _hmi.containsKey(hash) || _hms.containsKey(hash);
if (exists)
{
_last_access.put(hash, System.currentTimeMillis());
}
check_expired();
_log.fine("Check exists memcache " + type + "(" + key + ")[" + hash + "] is " + exists);
return exists;
}
public Integer get_int(String type, String key)
{
final int hash = (type + "->" + key).hashCode();
_last_access.put(hash, System.currentTimeMillis());
check_expired();
_log.fine("Get memcache " + type + "(" + key + ")[" + hash + "] = " + _hmi.get(hash));
return _hmi.get(hash);
}
}