OQL stands for "Object Query Language". It is defined by the Object Data Management Group (ODMG).
3
votes
1answer
944 views
OQL query to find all instances and sub-instances of a given class refered to from a session
I'm trying to use jhat/OQL to trace a memory leak in our Tomcat container. The question I want to ask is:
"Show me all the instances (and sub-instances) of foo.bar.Cacheable class that are reachable ...
2
votes
1answer
517 views
VisualVM OQL: how to search for primitive float values rather than actual Float instances?
I am wondering how one can search for all primitive float values that match a certain number.
When doing something like:
select n from java.lang.Float n where n.value == 1.00
Only the Float class ...
2
votes
2answers
561 views
get static fields of a class in a heap dump in OQL
I have a heap dump and I'm using Eclipse MAT, though I suppose this should work through visualvm or whatever OQL client.
We can select fields of all instances of a class by doing something like
...