view src/global/WebCache.java @ 54:6bd33547304f

fix for www reindex
author Vadim Filimonov <fffilimonov@yandex.ru>
date Wed, 07 Jul 2021 11:36:27 +0300
parents 7ecd1a4ef557
children
line wrap: on
line source

package global;

import fschmidt.util.servlet.HttpCache;
import nabble.model.Init;


enum WebCache implements HttpCache {
	INSTANCE;

	private static final long hour = 1000L*60*60;
	private static final long cacheTime = Init.get("cacheTime",hour);

	private long mod = now();

	private static long now() {
		return System.currentTimeMillis()/1000*1000;
	}

	public synchronized long[] lastModifieds(String[] modifyingEvents) {
		long now = now();
		if( now - mod > cacheTime )
			mod = now;
		long[] rtn = new long[modifyingEvents.length];
		for( int i=0; i<modifyingEvents.length; i++ ) {
			rtn[i] = mod;
		}
		return rtn;
	}

	public void modified(String modifyingEvent) {
		throw new UnsupportedOperationException();
	}

	public synchronized void clear() {
		mod = now();
	}

}