[
https://issues.apache.org/jira/browse/BVAL-154?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16102207#comment-16102207
]
Mark Struberg commented on BVAL-154:
------------------------------------
Yes, that might be good for 2.0.
For now I'll implement a solution which at least reduces the memory footprint
for 1.1.
> reduce memory footprint of BeanMeta
> -----------------------------------
>
> Key: BVAL-154
> URL: https://issues.apache.org/jira/browse/BVAL-154
> Project: BVal
> Issue Type: Bug
> Components: jsr303
> Affects Versions: 1.1.2
> Reporter: Mark Struberg
> Assignee: Mark Struberg
> Fix For: 1.1.3, 2.0.0
>
>
> While doing some performance analysis on a project I figured that we store
> way too many BeanMeta instances.
> This seems to come from other frameworks checking whether a class has
> BeanValidation features on them.
> It also happens within our own CDI BValExtension.
> The result is that we also cache the BeanMeta for every class which gets
> queried, regardless whether it has some validation on them or not.
> We should introduce a 'negative cache' which contains classes which are known
> to have no validation on them
> {code:java}
> getConstraintForClass(Calss c) {
> if (negativeCache.contains(c))
> return new EmptyBeanDescription(c);
> ...
> if (noValidationFeatureFound)
> negativeCache.add(c);
> }
> {code}
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)