/**
* @Before invocationCount
*/
public void invocationCounter(final JoinPoint joinPoint) throws Throwable {
CallerSideJoinPoint jp = (CallerSideJoinPoint)joinPoint;
CacheStatistics.addMethodInvocation(
jp.getCalleeMethodName(),
jp.getCalleeMethodParameterTypes());
joinPoint.proceed();
}