
| Key: |
FC-1386
|
| Type: |
Bug
|
| Status: |
Resolved
|
| Resolution: |
Fixed
|
| Priority: |
Minor
|
| Assignee: |
Unassigned
|
| Reporter: |
Michael Sharman
|
| Votes: |
0
|
| Watchers: |
0
|
|
If you were logged in you would be able to see more operations.
|
|
|
|
The following object should not be cachable as "bObjectBroker" is set to false:
<cfcomponent displayname="Products" name="Products" extends="farcry.core.packages.types.types" output="false" buseintree="true" bObjectBroker="false" objectbrokermaxobjects="50" lObjectBrokerWebskins="display*">
However it does appear to be caching, meaning you need to remove all references to objectbroker as follows:
<cfcomponent displayname="Products" name="Products" extends="farcry.core.packages.types.types" output="false" buseintree="true">
|
|
Description
|
The following object should not be cachable as "bObjectBroker" is set to false:
<cfcomponent displayname="Products" name="Products" extends="farcry.core.packages.types.types" output="false" buseintree="true" bObjectBroker="false" objectbrokermaxobjects="50" lObjectBrokerWebskins="display*">
However it does appear to be caching, meaning you need to remove all references to objectbroker as follows:
<cfcomponent displayname="Products" name="Products" extends="farcry.core.packages.types.types" output="false" buseintree="true"> |
Show » |
|
I would have thought that bobjectbroker="false" should basically remove the component completely from the broker.