Hi All,
I am using KVM policy for encrypted KVM in my API proxy and I noticed that one of the KVM policy is taking more than 1000ms and onepolicy is taking approx 437ms and for me its quite high..
Why is it so?? Has anyone encountered similar problem??
What could be the possible cause??
Below is the code for the two policies :
- Policy1- More than 1 Sec
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<KeyValueMapOperations async="false" continueOnError="false" enabled="true" name="KVM-GetValues" mapIdentifier="mymap">
<DisplayName>KVM-GetValues</DisplayName>
<Properties/>
<ExclusiveCache>false</ExclusiveCache>
<ExpiryTimeInSecs>300000</ExpiryTimeInSecs>
<Get assignTo="private.var1" index="1">
<Key>
<Parameter>key1</Parameter>
</Key>
</Get>
<Get assignTo="private.var2" index="1">
<Key>
<Parameter>kay2</Parameter>
</Key>
</Get>
<Get assignTo="private.var3" index="1">
<Key>
<Parameter>key3</Parameter>
</Key>
</Get>
<Scope>environment</Scope>
</KeyValueMapOperations>
Policy 2 - 430ms
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<KeyValueMapOperations async="false" continueOnError="false" enabled="true" name="KVM-GetValues" mapIdentifier="mymap_new">
<DisplayName>KVM-GetValues</DisplayName>
<Properties/>
<ExclusiveCache>false</ExclusiveCache>
<ExpiryTimeInSecs>300000</ExpiryTimeInSecs>
<Get assignTo="private.var3">
<Key>
<Parameter>key3</Parameter>
</Key>
</Get>
<Scope>environment</Scope>
</KeyValueMapOperations>
Attaching the screen-shot from trace session.
Please let me know if I am doing sth wrong.
One thing I noticed though, similar policy is taking approx 30ms in free/trial org but taking more time in paid org.
