User Tools

Site Tools


scratchpad:xulrunner_caching_comparison

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
scratchpad:xulrunner_caching_comparison [2011/06/08 14:56] phasefxscratchpad:xulrunner_caching_comparison [2022/02/10 13:34] (current) – external edit 127.0.0.1
Line 1: Line 1:
 ====== Testing caching, HTTP requests, etc. in the staff client ====== ====== Testing caching, HTTP requests, etc. in the staff client ======
 +===== This Page May Need Updating or Revising=====
 +
  
 Methodology: monitor Apache logs for hits to determine whether a given invocation of a UI is using a cached version or not.  For a UI geared toward showing a specific object (such as a patron), test with multiple objects to ensure that caching isn't tied to specific objects.  Allow caching of common files; for example, Check In will access list.js and controller.js, but so will most interfaces, and we won't explicitly clear the cache between  Methodology: monitor Apache logs for hits to determine whether a given invocation of a UI is using a cached version or not.  For a UI geared toward showing a specific object (such as a patron), test with multiple objects to ensure that caching isn't tied to specific objects.  Allow caching of common files; for example, Check In will access list.js and controller.js, but so will most interfaces, and we won't explicitly clear the cache between 
Line 17: Line 19:
 Cell content:  First value, True or False or Partial for cache use (of regular files, not the gateway) on first invocation after the login process.  Last value, True or False or Partial for cache use on last invocation. Cell content:  First value, True or False or Partial for cache use (of regular files, not the gateway) on first invocation after the login process.  Last value, True or False or Partial for cache use on last invocation.
  
-|                   ^EG 1.6.1.4 & XR 1.9.0.17           ^EG 2.0.3 & XR 1.9.2.17           +|                   ^EG 1.6.1.4 & XR 1.9.0.17           ^EG 2.0.3 & XR 1.9.2.17                   
-^Check In           | False (#1)  True (#2)  True (#11) |                                 +^Check In           | False (#1)  True (#2)  True (#11) | False (#19) Partial (#20) Partial (#29) 
-^Patron Registration| False (#3)  True (#4)  True (#12) |                                 +^Patron Registration| False (#3)  True (#4)  True (#12) | False (#21) Partial (#22) Partial (#30) 
-^Check Out          | False (#5)  True (#13)            |                                 +^Check Out          | False (#5)  True (#13)            | False (#23) Partial (#31)               
-^Patron Items Out   | False (#6)  True (#14)            |                                 +^Patron Items Out   | False (#6)  True (#14)            | False (#24) Partial (#32)               
-^Patron Holds       | False (#7)  True (#15)            |                                 +^Patron Holds       | False (#7)  True (#15)            | False (#25) Partial (#33)               
-^Patron Billing     | False (#8)  True (#16)            |                                 +^Patron Billing     | False (#8)  True (#16)            | False (#26) Partial (#34)               
-^Item Status        | False (#9)  True (#17)            |                                 +^Item Status        | False (#9)  True (#17)            | False (#27) Partial (#35)               
-^OPAC Javascript    | False (#10) Partial (#18)                                         |+^OPAC Javascript    | False (#10) Partial (#18)         False (#28) Partial (#36)               |
  
 +**Note:** Most of these "Partials" are coming from 404's against non-existent files (_custom.css, etc.).
 ====== Check In ====== ====== Check In ======
  
Line 67: Line 70:
  
 ===== EG 2.0.3 & XR 1.9.2.17 ===== ===== EG 2.0.3 & XR 1.9.2.17 =====
 +
 +==== #19 ====
 +
 +**HTTP requests:**
 +<code>
 +GET /xul/rel_2_0_6/server/circ/checkin.xul HTTP/1.1
 +GET /xul/20110311.001444/server/skin/custom.js HTTP/1.1
 +GET /xul/20110311.001444/server/circ/checkin_overlay.xul HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/auth_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/offline_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/common_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/cat.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/cat_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/circ.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/circ_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server//circ/checkin.js HTTP/1.1
 +GET /xul/20110311.001444/server//circ/util.js HTTP/1.1
 +GET /xul/20110311.001444/server//patron/util.js HTTP/1.1
 +</code>
 +
 +**Gateway calls:** None
 +
 +==== #20 ====
 +
 +**HTTP requests:**
 +<code>
 +GET /xul/20110311.001444/server/skin/custom.js HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/auth_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/offline_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/common_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/cat_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/circ_custom.properties HTTP/1.1
 +</code>
 +
 +**Gateway calls:** None
 +
 +==== #29 ====
 +**HTTP requests:**
 +<code>
 +GET /xul/20110311.001444/server/skin/custom.js HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/auth_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/offline_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/common_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/cat_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/circ_custom.properties HTTP/1.1
 +</code>
 +
 +**Gateway calls:** None
  
 ====== Patron Registration ====== ====== Patron Registration ======
Line 146: Line 197:
  
 ===== EG 2.0.3 & XR 1.9.2.17 ===== ===== EG 2.0.3 & XR 1.9.2.17 =====
 +
 +==== #21 ====
 +**HTTP requests:**
 +<code>
 +GET /eg/actor/user/register HTTP/1.1
 +GET /css/skin/default.css HTTP/1.1
 +GET /css/theme/default.css HTTP/1.1
 +GET /css/skin/default/acq.css HTTP/1.1
 +GET /css/skin/default/admin.css HTTP/1.1
 +GET /css/skin/default/serial.css HTTP/1.1
 +GET /js/dojo/dojo/resources/dojo.css HTTP/1.1
 +GET /js/dojo/dojox/grid/resources/Grid.css HTTP/1.1
 +GET /css/theme/default/admin.css HTTP/1.1
 +GET /css/skin/default/register.css HTTP/1.1
 +GET /css/theme/default/acq.css HTTP/1.1
 +GET /js/ui/base.js HTTP/1.1
 +GET /js/dojo/dijit/themes/tundra/tundra.css HTTP/1.1
 +GET /js/dojo/dojo/openils_dojo.js HTTP/1.1
 +GET /opac/images/advancedsearch-icon.png HTTP/1.1
 +GET /js/ui/default/actor/user/register.js HTTP/1.1
 +GET /css/skin/default/register_custom.css HTTP/1.1
 +GET /js/dojo/dojo/nls/openils_dojo_en-us.js HTTP/1.1
 +GET /js/dojo/openils/User.js HTTP/1.1
 +GET /js/dojo/openils/Event.js HTTP/1.1
 +GET /js/dojo/fieldmapper/OrgUtils.js HTTP/1.1
 +GET /js/dojo/fieldmapper/OrgTree.js HTTP/1.1
 +GET /js/dojo/fieldmapper/OrgLasso.js HTTP/1.1
 +GET /js/dojo/openils/Util.js HTTP/1.1
 +GET /js/dojo/openils/User/nls/User.js HTTP/1.1
 +GET /js/dojo/openils/User/nls/en/User.js HTTP/1.1
 +GET /js/dojo/openils/User/nls/en-us/User.js HTTP/1.1
 +GET /js/dojo/openils/CGI.js HTTP/1.1
 +GET /js/dojo/openils/XUL.js HTTP/1.1
 +POST /osrf-http-translator HTTP/1.1
 +GET /js/dojo/dijit/layout/LayoutContainer.js HTTP/1.1
 +GET /js/dojo/dojo/data/ItemFileReadStore.js HTTP/1.1
 +GET /js/dojo/dijit/form/Form.js HTTP/1.1
 +GET /js/dojo/dijit/form/Textarea.js HTTP/1.1
 +GET /js/dojo/dijit/form/SimpleTextarea.js HTTP/1.1
 +GET /js/dojo/dijit/form/NumberSpinner.js HTTP/1.1
 +GET /js/dojo/dijit/form/_Spinner.js HTTP/1.1
 +GET /js/dojo/dijit/form/NumberTextBox.js HTTP/1.1
 +GET /js/dojo/dojo/number.js HTTP/1.1
 +GET /js/dojo/dojo/cldr/nls/en-us/number.js HTTP/1.1
 +GET /js/dojo/openils/PermaCrud.js HTTP/1.1
 +GET /js/dojo/openils/widget/AutoGrid.js HTTP/1.1
 +GET /js/dojo/dojox/grid/DataGrid.js HTTP/1.1
 +GET /js/dojo/dojox/grid/_Grid.js HTTP/1.1
 +GET /js/dojo/dijit/dijit.js HTTP/1.1
 +GET /js/dojo/dojox/html/metrics.js HTTP/1.1
 +GET /js/dojo/dojox/grid/util.js HTTP/1.1
 +GET /js/dojo/dojox/grid/_Scroller.js HTTP/1.1
 +GET /js/dojo/dojox/grid/_Layout.js HTTP/1.1
 +GET /js/dojo/dojox/grid/cells.js HTTP/1.1
 +GET /js/dojo/dojox/grid/cells/_base.js HTTP/1.1
 +GET /js/dojo/dojox/grid/_RowSelector.js HTTP/1.1
 +GET /js/dojo/dojox/grid/_View.js HTTP/1.1
 +GET /js/dojo/dojox/grid/_Builder.js HTTP/1.1
 +GET /js/dojo/dojo/dnd/Source.js HTTP/1.1
 +GET /js/dojo/dojo/dnd/Selector.js HTTP/1.1
 +GET /js/dojo/dojo/dnd/Container.js HTTP/1.1
 +GET /js/dojo/dojo/dnd/Manager.js HTTP/1.1
 +GET /js/dojo/dojo/dnd/Avatar.js HTTP/1.1
 +GET /js/dojo/dojox/grid/_ViewManager.js HTTP/1.1
 +GET /js/dojo/dojox/grid/_RowManager.js HTTP/1.1
 +GET /js/dojo/dojox/grid/_FocusManager.js HTTP/1.1
 +GET /js/dojo/dojox/grid/_EditManager.js HTTP/1.1
 +GET /js/dojo/dojox/grid/Selection.js HTTP/1.1
 +GET /js/dojo/dojox/grid/_Events.js HTTP/1.1
 +GET /js/dojo/dijit/nls/loading.js HTTP/1.1
 +GET /js/dojo/dojox/grid/DataSelection.js HTTP/1.1
 +GET /js/dojo/openils/widget/AutoWidget.js HTTP/1.1
 +GET /js/dojo/dojo/data/ItemFileWriteStore.js HTTP/1.1
 +GET /js/dojo/fieldmapper/dojoData.js HTTP/1.1
 +GET /js/dojo/openils/widget/AutoFieldWidget.js HTTP/1.1
 +GET /js/dojo/openils/widget/nls/AutoFieldWidget.js HTTP/1.1
 +GET /js/dojo/openils/widget/nls/en/AutoFieldWidget.js HTTP/1.1
 +GET /js/dojo/openils/widget/nls/en-us/AutoFieldWidget.js HTTP/1.1
 +GET /js/dojo/openils/widget/EditPane.js HTTP/1.1
 +GET /js/dojo/openils/widget/EditDialog.js HTTP/1.1
 +GET /js/dojo/openils/widget/GridColumnPicker.js HTTP/1.1
 +GET /js/dojo/dijit/form/CheckBox.js HTTP/1.1
 +GET /js/dojo/openils/actor/nls/register.js HTTP/1.1
 +GET /js/dojo/openils/actor/nls/en/register.js HTTP/1.1
 +GET /js/dojo/openils/actor/nls/en-us/register.js HTTP/1.1
 +GET /css/skin/default/register_custom.css HTTP/1.1
 +GET /js/dojo/dojo/resources/blank.gif HTTP/1.1
 +GET /js/dojo/dijit/themes/tundra/images/titleBar.png HTTP/1.1
 +GET /js/dojo/dijit/themes/tundra/images/tabClose.png HTTP/1.1
 +GET /js/dojo/dijit/themes/images/buttonEnabled.png HTTP/1.1
 +GET /js/dojo/dijit/themes/images/validationInputBg.png HTTP/1.1
 +POST /osrf-http-translator HTTP/1.1
 +POST /osrf-http-translator HTTP/1.1
 +POST /osrf-http-translator HTTP/1.1
 +POST /osrf-http-translator HTTP/1.1
 +POST /osrf-http-translator HTTP/1.1
 +GET /js/dojo/dijit/themes/images/warning.png HTTP/1.1
 +GET /js/dojo/dijit/themes/images/checkmark.png HTTP/1.1
 +GET /js/dojo/dijit/themes/images/comboArrowDown.gif HTTP/1.1
 +POST /osrf-http-translator HTTP/1.1
 +GET /js/dojo/dijit/themes/images/buttonDisabled.png HTTP/1.1
 +GET /js/dojo/openils/widget/FilteringTreeSelect.js HTTP/1.1
 +POST /osrf-http-translator HTTP/1.1
 +POST /osrf-http-translator HTTP/1.1
 +POST /osrf-http-translator HTTP/1.1
 +POST /osrf-http-translator HTTP/1.1
 +POST /osrf-http-translator HTTP/1.1
 +GET /js/dojo/dijit/themes/images/spriteArrows.png HTTP/1.1
 +POST /osrf-http-translator HTTP/1.1
 +POST /osrf-http-translator HTTP/1.1
 +</code>
 +
 +**Gateway calls:** None
 +
 +==== #22 ====
 +
 +**HTTP requests:**
 +<code>
 +GET /css/skin/default/register_custom.css HTTP/1.1
 +GET /js/dojo/openils/User/nls/en/User.js HTTP/1.1
 +GET /js/dojo/openils/User/nls/en-us/User.js HTTP/1.1
 +POST /osrf-http-translator HTTP/1.1
 +GET /js/dojo/openils/widget/nls/en/AutoFieldWidget.js HTTP/1.1
 +GET /js/dojo/openils/widget/nls/en-us/AutoFieldWidget.js HTTP/1.1
 +GET /js/dojo/openils/actor/nls/en/register.js HTTP/1.1
 +GET /js/dojo/openils/actor/nls/en-us/register.js HTTP/1.1
 +GET /css/skin/default/register_custom.css HTTP/1.1
 +POST /osrf-http-translator HTTP/1.1
 +POST /osrf-http-translator HTTP/1.1
 +POST /osrf-http-translator HTTP/1.1
 +POST /osrf-http-translator HTTP/1.1
 +POST /osrf-http-translator HTTP/1.1
 +POST /osrf-http-translator HTTP/1.1
 +POST /osrf-http-translator HTTP/1.1
 +POST /osrf-http-translator HTTP/1.1
 +POST /osrf-http-translator HTTP/1.1
 +POST /osrf-http-translator HTTP/1.1
 +POST /osrf-http-translator HTTP/1.1
 +POST /osrf-http-translator HTTP/1.1
 +POST /osrf-http-translator HTTP/1.1
 +GET /js/dojo/dijit/themes/images/buttonHover.png HTTP/1.1
 +</code>
 +
 +**Gateway calls:** None
 +
 +==== #30 ====
 +**HTTP requests:**
 +<code>
 +GET /css/skin/default/register_custom.css HTTP/1.1
 +GET /js/dojo/openils/User/nls/en/User.js HTTP/1.1
 +GET /js/dojo/openils/User/nls/en-us/User.js HTTP/1.1
 +POST /osrf-http-translator HTTP/1.1
 +GET /js/dojo/openils/widget/nls/en/AutoFieldWidget.js HTTP/1.1
 +GET /js/dojo/openils/widget/nls/en-us/AutoFieldWidget.js HTTP/1.1
 +GET /js/dojo/openils/actor/nls/en/register.js HTTP/1.1
 +GET /js/dojo/openils/actor/nls/en-us/register.js HTTP/1.1
 +GET /css/skin/default/register_custom.css HTTP/1.1
 +POST /osrf-http-translator HTTP/1.1
 +POST /osrf-http-translator HTTP/1.1
 +POST /osrf-http-translator HTTP/1.1
 +POST /osrf-http-translator HTTP/1.1
 +POST /osrf-http-translator HTTP/1.1
 +POST /osrf-http-translator HTTP/1.1
 +POST /osrf-http-translator HTTP/1.1
 +POST /osrf-http-translator HTTP/1.1
 +POST /osrf-http-translator HTTP/1.1
 +POST /osrf-http-translator HTTP/1.1
 +POST /osrf-http-translator HTTP/1.1
 +POST /osrf-http-translator HTTP/1.1
 +POST /osrf-http-translator HTTP/1.1
 +</code>
 +
 +**Gateway calls:** None
  
 ====== Check Out ====== ====== Check Out ======
Line 242: Line 466:
  
 ===== EG 2.0.3 & XR 1.9.2.17 ===== ===== EG 2.0.3 & XR 1.9.2.17 =====
 +
 +==== #23 ====
 +**HTTP requests:**
 +<code>
 +GET /xul/rel_2_0_6/server/patron/barcode_entry.xul HTTP/1.1
 +GET /xul/20110311.001444/server/skin/custom.js HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/auth_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/offline_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/common_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/patron.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/patron_custom.properties HTTP/1.1
 +POST /osrf-gateway-v1 HTTP/1.1
 +GET /xul/20110311.001444/server/patron/display.xul HTTP/1.1
 +GET /xul/20110311.001444/server/skin/media/audio/bonus.wav HTTP/1.1
 +GET /xul/20110311.001444/server/patron/display.js HTTP/1.1
 +GET /xul/20110311.001444/server/skin/custom.js HTTP/1.1
 +GET /xul/20110311.001444/server/patron/display_overlay.xul HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/auth_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/offline_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/common_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/patron_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/patron/summary.xul HTTP/1.1
 +GET /xul/20110311.001444/server/skin/custom.js HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/auth_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/offline_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/common_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/offline_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/patron_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/patron/summary_overlay.xul HTTP/1.1
 +GET /xul/20110311.001444/server//patron/summary.js HTTP/1.1
 +POST /osrf-gateway-v1 HTTP/1.1
 +POST /osrf-gateway-v1 HTTP/1.1
 +POST /osrf-gateway-v1 HTTP/1.1
 +GET /xul/20110311.001444/server/circ/checkout.xul HTTP/1.1
 +POST /osrf-gateway-v1 HTTP/1.1
 +POST /osrf-gateway-v1 HTTP/1.1
 +POST /osrf-gateway-v1 HTTP/1.1
 +GET /xul/20110311.001444/server/skin/custom.js HTTP/1.1
 +POST /osrf-gateway-v1 HTTP/1.1
 +GET /xul/20110311.001444/server/circ/checkout_overlay.xul HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/auth_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/offline_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/common_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/circ_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server//circ/checkout.js HTTP/1.1
 +POST /osrf-gateway-v1 HTTP/1.1
 +POST /osrf-gateway-v1 HTTP/1.1
 +POST /osrf-gateway-v1 HTTP/1.1
 +POST /osrf-gateway-v1 HTTP/1.1
 +POST /osrf-gateway-v1 HTTP/1.1
 +</code>
 +
 +**Gateway calls:**
 +<code>
 +open-ils.actor.user.retrieve_id_by_barcode_or_username
 +open-ils.actor.user.fleshed.retrieve_by_barcode.authoritative
 +open-ils.actor.user.fines.summary.authoritative
 +open-ils.actor.user.checked_out.count.authoritative
 +open-ils.actor.user.checked_out.count.authoritative
 +open-ils.actor.note.retrieve.all.authoritative
 +open-ils.actor.user.checked_out.count.authoritative
 +open-ils.actor.note.retrieve.all.authoritative
 +open-ils.actor.usergroup.members.balance_owed.authoritative
 +open-ils.circ.open_non_cataloged_circulation.user.authoritative
 +open-ils.actor.user.hold_requests.count.authoritative
 +open-ils.actor.user.checked_out.count.authoritative
 +open-ils.actor.user.fines.summary.authoritative
 +</code>
 +
 +==== #31 ====
 +**HTTP requests:**
 +<code>
 +GET /xul/20110311.001444/server/skin/custom.js HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/auth_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/offline_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/common_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/patron_custom.properties HTTP/1.1
 +POST /osrf-gateway-v1 HTTP/1.1
 +GET /xul/20110311.001444/server/skin/custom.js HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/auth_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/offline_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/common_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/patron_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/skin/custom.js HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/auth_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/offline_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/common_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/offline_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/patron_custom.properties HTTP/1.1
 +POST /osrf-gateway-v1 HTTP/1.1
 +POST /osrf-gateway-v1 HTTP/1.1
 +POST /osrf-gateway-v1 HTTP/1.1
 +GET /xul/20110311.001444/server/skin/custom.js HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/auth_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/offline_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/common_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/circ_custom.properties HTTP/1.1
 +POST /osrf-gateway-v1 HTTP/1.1
 +POST /osrf-gateway-v1 HTTP/1.1
 +POST /osrf-gateway-v1 HTTP/1.1
 +POST /osrf-gateway-v1 HTTP/1.1
 +POST /osrf-gateway-v1 HTTP/1.1
 +POST /osrf-gateway-v1 HTTP/1.1
 +POST /osrf-gateway-v1 HTTP/1.1
 +POST /osrf-gateway-v1 HTTP/1.1
 +POST /osrf-gateway-v1 HTTP/1.1
 +</code>
 +
 +**Gateway calls:**
 +<code>
 +open-ils.actor.user.retrieve_id_by_barcode_or_username
 +open-ils.actor.user.fleshed.retrieve_by_barcode.authoritative
 +open-ils.actor.user.fines.summary.authoritative
 +open-ils.actor.user.checked_out.count.authoritative
 +open-ils.actor.usergroup.members.balance_owed.authoritative
 +open-ils.actor.note.retrieve.all.authoritative
 +open-ils.actor.note.retrieve.all.authoritative
 +open-ils.actor.user.hold_requests.count.authoritative
 +open-ils.circ.open_non_cataloged_circulation.user.authoritative
 +open-ils.actor.user.checked_out.count.authoritative
 +open-ils.actor.user.checked_out.count.authoritative
 +open-ils.actor.user.checked_out.count.authoritative
 +open-ils.actor.user.fines.summary.authoritative
 +</code>
 +
 +
  
 ====== Patron Items Out ====== ====== Patron Items Out ======
Line 289: Line 639:
  
 ===== EG 2.0.3 & XR 1.9.2.17 ===== ===== EG 2.0.3 & XR 1.9.2.17 =====
 +
 +==== #24 ====
 +
 +**HTTP requests:**
 +<code>
 +GET /xul/20110311.001444/server/patron/items.xul HTTP/1.1
 +GET /xul/20110311.001444/server/patron/items.js HTTP/1.1
 +GET /xul/20110311.001444/server/skin/custom.js HTTP/1.1
 +GET /xul/20110311.001444/server/patron/items_overlay.xul HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/auth_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/offline_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/common_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/patron_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/cat_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/circ_custom.properties HTTP/1.1
 +POST /osrf-gateway-v1 HTTP/1.1
 +POST /osrf-gateway-v1 HTTP/1.1
 +POST /osrf-gateway-v1 HTTP/1.1
 +POST /osrf-gateway-v1 HTTP/1.1
 +POST /osrf-gateway-v1 HTTP/1.1
 +</code>
 +
 +**Gateway calls:**
 +<code>
 +open-ils.actor.user.checked_out.authoritative
 +open-ils.actor.user.checked_in_with_fines.authoritative
 +open-ils.actor.user.checked_out.count.authoritative
 +open-ils.actor.usergroup.members.balance_owed.authoritative
 +open-ils.circ.open_non_cataloged_circulation.user.authoritative
 +</code>
 +
 +=== #32 ===
 +**HTTP requests:**
 +<code>
 +GET /xul/20110311.001444/server/skin/custom.js HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/auth_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/offline_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/common_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/patron_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/cat_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/circ_custom.properties HTTP/1.1
 +POST /osrf-gateway-v1 HTTP/1.1
 +POST /osrf-gateway-v1 HTTP/1.1
 +POST /osrf-gateway-v1 HTTP/1.1
 +POST /osrf-gateway-v1 HTTP/1.1
 +POST /osrf-gateway-v1 HTTP/1.1
 +</code>
 +
 +**Gateway calls:**
 +<code>
 +open-ils.actor.user.checked_out.authoritative
 +open-ils.actor.user.checked_in_with_fines.authoritative
 +open-ils.actor.user.checked_out.count.authoritative
 +open-ils.actor.usergroup.members.balance_owed.authoritative
 +open-ils.circ.open_non_cataloged_circulation.user.authoritative
 +</code>
  
 ====== Patron Holds ====== ====== Patron Holds ======
Line 322: Line 728:
  
 ===== EG 2.0.3 & XR 1.9.2.17 ===== ===== EG 2.0.3 & XR 1.9.2.17 =====
 +
 +==== #25 ====
 +**HTTP requests:**
 +<code>
 +GET /xul/20110311.001444/server/patron/holds.xul HTTP/1.1
 +GET /xul/20110311.001444/server/patron/holds.js HTTP/1.1
 +GET /xul/20110311.001444/server/skin/custom.js HTTP/1.1
 +GET /xul/20110311.001444/server/patron/holds_overlay.xul HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/auth_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/offline_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/common_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/patron_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/cat_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/circ_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/patron/hold_details.xul HTTP/1.1
 +GET /xul/20110311.001444/server/patron/hold_details.js HTTP/1.1
 +POST /osrf-gateway-v1 HTTP/1.1
 +GET /xul/20110311.001444/server/skin/custom.js HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/auth_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/offline_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/common_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/patron_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/circ_custom.properties HTTP/1.1
 +GET /js/dojo/openils/User/nls/en/User.js HTTP/1.1
 +GET /js/dojo/openils/User/nls/en-us/User.js HTTP/1.1
 +</code>
 +
 +**Gateway calls:**
 +<code>
 +open-ils.circ.holds.id_list.retrieve.authoritative
 +</code>
 +
 +==== #33 ====
 +
 +**HTTP requests:**
 +<code>
 +GET /xul/20110311.001444/server/skin/custom.js HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/auth_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/offline_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/common_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/patron_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/cat_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/circ_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/skin/custom.js HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/auth_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/offline_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/common_custom.properties HTTP/1.1
 +POST /osrf-gateway-v1 HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/patron_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/circ_custom.properties HTTP/1.1
 +GET /js/dojo/openils/User/nls/en/User.js HTTP/1.1
 +GET /js/dojo/openils/User/nls/en-us/User.js HTTP/1.1
 +</code>
 +
 +**Gateway calls:**
 +<code>
 +open-ils.circ.holds.id_list.retrieve.authoritative
 +</code>
 +
  
 ====== Patron Billing ====== ====== Patron Billing ======
Line 341: Line 806:
 </code> </code>
  
-==== #15 ====+==== #16 ====
  
 **HTTP requests:** **HTTP requests:**
Line 354: Line 819:
  
 ===== EG 2.0.3 & XR 1.9.2.17 ===== ===== EG 2.0.3 & XR 1.9.2.17 =====
 +
 +==== #26 ====
 +**HTTP requests:**
 +<code>
 +GET /xul/20110311.001444/server/patron/bill2.xul HTTP/1.1
 +GET /xul/20110311.001444/server/patron/bill2.js HTTP/1.1
 +GET /xul/20110311.001444/server/skin/custom.js HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/auth_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/offline_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/common_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/circ_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/patron_custom.properties HTTP/1.1
 +POST /osrf-gateway-v1 HTTP/1.1
 +POST /osrf-gateway-v1 HTTP/1.1
 +</code>
 +
 +**Gateway calls:**
 +<code>
 +open-ils.actor.user.transactions.history.have_balance.ids.authoritative
 +open-ils.actor.user.fleshed.retrieve.authoritative
 +</code>
 +
 +==== #34 ====
 +**HTTP requests:**
 +<code>
 +GET /xul/20110311.001444/server/skin/custom.js HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/auth_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/offline_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/common_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/circ_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/patron_custom.properties HTTP/1.1
 +POST /osrf-gateway-v1 HTTP/1.1
 +POST /osrf-gateway-v1 HTTP/1.1
 +</code>
 +
 +**Gateway calls:**
 +<code>
 +open-ils.actor.user.transactions.history.have_balance.ids.authoritative
 +open-ils.actor.user.fleshed.retrieve.authoritative
 +</code>
  
 ====== Item Status ====== ====== Item Status ======
Line 374: Line 879:
  
 ===== EG 2.0.3 & XR 1.9.2.17 ===== ===== EG 2.0.3 & XR 1.9.2.17 =====
 +
 +==== #27 ====
 +
 +**HTTP requests:**
 +<code>
 +GET /xul/rel_2_0_6/server/circ/copy_status.xul HTTP/1.1
 +GET /xul/20110311.001444/server/skin/custom.js HTTP/1.1
 +GET /xul/20110311.001444/server/circ/copy_status_overlay.xul HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/auth_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/offline_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/common_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/cat_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/circ_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server//circ/copy_status.js HTTP/1.1
 +GET /xul/rel_2_0_6/server/circ/alternate_copy_summary.xul HTTP/1.1
 +GET /xul/rel_2_0_6/server/circ/alternate_copy_summary.js HTTP/1.1
 +GET /xul/20110311.001444/server/skin/custom.js HTTP/1.1
 +GET /xul/20110311.001444/server/cat/bib_brief_overlay.xul HTTP/1.1
 +GET /xul/20110311.001444/server/cat/bib_brief_overlay.js HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/auth_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/offline_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/common_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/cat_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/circ_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server//cat/util.js HTTP/1.1
 +</code>
 +
 +**Gateway calls:** None
 +
 +==== #35 ====
 +**HTTP requests:**
 +<code>
 +GET /xul/20110311.001444/server/skin/custom.js HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/auth_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/offline_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/common_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/cat_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/circ_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/skin/custom.js HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/auth_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/offline_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/common_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/cat_custom.properties HTTP/1.1
 +GET /xul/20110311.001444/server/locale/en-US/circ_custom.properties HTTP/1.1
 +</code>
 +
 +**Gateway calls:** None
  
 ====== OPAC Javascript ====== ====== OPAC Javascript ======
Line 500: Line 1052:
  
 ===== EG 2.0.3 & XR 1.9.2.17 ===== ===== EG 2.0.3 & XR 1.9.2.17 =====
 +
 +==== #28 ====
 +
 +**HTTP requests:**
 +<code>
 +GET /xul/rel_2_0_6/server/skin/custom.js HTTP/1.1
 +GET /opac/en-US/skin/default/xml/advanced.xml?nps=1 HTTP/1.1
 +GET //opac//skin/default/css/layout.css HTTP/1.1
 +GET //opac//common/css/mediumfont.css HTTP/1.1
 +GET //opac//common/js/slimtree.js HTTP/1.1
 +GET //opac//common/js/utils.js HTTP/1.1
 +GET //opac//common/js/CGI.js HTTP/1.1
 +GET //opac//common/js/md5.js HTTP/1.1
 +GET //opac//common/js/JSON_v1.js HTTP/1.1
 +GET //opac//theme/default/css/colors.css HTTP/1.1
 +GET //opac//common/js/config.js HTTP/1.1
 +GET //opac//common/js/en-US/OrgTree.js HTTP/1.1
 +GET //opac//common/js/opac_utils.js HTTP/1.1
 +GET /IDL2js?mvr,bre,aou,aout,pgt,lasso,cmf,cmc,cmsa,cam,cifm,clfm,citm,cblvl HTTP/1.1
 +GET //opac//common/js/en-US/FacetDefs.js HTTP/1.1
 +GET //opac//common/js/OrgLasso.js HTTP/1.1
 +GET //opac//common/js/org_utils.js HTTP/1.1
 +GET //opac//common/js/RemoteRequest.js HTTP/1.1
 +GET //opac//common/js/init.js HTTP/1.1
 +GET //opac//common/js/added_content.js HTTP/1.1
 +GET //opac//skin/default/js/sidebar.js HTTP/1.1
 +GET //opac//skin/default/js/password_reset.js HTTP/1.1
 +GET //opac//skin/default/js/advanced.js HTTP/1.1
 +GET //opac//skin/default/js/depth_selector.js HTTP/1.1
 +GET //opac//skin/default/js/adv_global.js HTTP/1.1
 +GET //opac//images/small_logo.jpg HTTP/1.1
 +GET //opac//theme/reddish/css/colors.css HTTP/1.1
 +GET /opac/images/progressbar_green.gif HTTP/1.1
 +GET /opac/images/eg_tiny_logo.jpg HTTP/1.1
 +GET /js/dojo/openils/opac/nls/opac.js HTTP/1.1
 +GET /js/dojo/openils/opac/nls/en/opac.js HTTP/1.1
 +GET /js/dojo/openils/opac/nls/en-us/opac.js HTTP/1.1
 +GET /js/dojo/openils/widget/FacetSidebar.js HTTP/1.1
 +GET /js/dojo/openils/widget/Searcher.js HTTP/1.1
 +GET /js/dojo/openils/I18N.js HTTP/1.1
 +POST /osrf-http-translator HTTP/1.1
 +GET /js/dojo/openils/widget/nls/Searcher.js HTTP/1.1
 +GET /js/dojo/openils/widget/nls/en/Searcher.js HTTP/1.1
 +GET /js/dojo/openils/widget/nls/en-us/Searcher.js HTTP/1.1
 +POST /osrf-http-translator HTTP/1.1
 +POST /osrf-http-translator HTTP/1.1
 +POST /osrf-gateway-v1 HTTP/1.1
 +GET /reports/fm_IDL.xml?class=au HTTP/1.1
 +POST /osrf-gateway-v1 HTTP/1.1
 +POST /osrf-gateway-v1 HTTP/1.1
 +POST /osrf-gateway-v1 HTTP/1.1
 +POST /osrf-gateway-v1 HTTP/1.1
 +POST /osrf-gateway-v1 HTTP/1.1
 +POST /osrf-gateway-v1 HTTP/1.1
 +GET /reports/fm_IDL.xml?class=acpl HTTP/1.1
 +POST /osrf-gateway-v1 HTTP/1.1
 +</code>
 +
 +**Gateway calls:**
 +<code>
 +open-ils.auth.session.retrieve
 +open-ils.actor.patron.settings.retrieve
 +open-ils.search.biblio.lit_form_map.retrieve.all
 +open-ils.search.biblio.item_form_map.retrieve.all
 +open-ils.search.biblio.item_type_map.retrieve.all
 +open-ils.circ.copy_location.retrieve.all
 +open-ils.search.biblio.audience_map.retrieve.all
 +open-ils.search.biblio.bib_level_map.retrieve.all
 +</code>
 +
 +==== #36 ====
 +
 +**HTTP requests:**
 +<code>
 +GET /xul/rel_2_0_6/server/skin/custom.js HTTP/1.1
 +GET /js/dojo/openils/opac/nls/en/opac.js HTTP/1.1
 +GET /js/dojo/openils/opac/nls/en-us/opac.js HTTP/1.1
 +GET /js/dojo/openils/widget/nls/en/Searcher.js HTTP/1.1
 +GET /js/dojo/openils/widget/nls/en-us/Searcher.js HTTP/1.1
 +POST /osrf-http-translator HTTP/1.1
 +POST /osrf-gateway-v1 HTTP/1.1
 +POST /osrf-gateway-v1 HTTP/1.1
 +POST /osrf-gateway-v1 HTTP/1.1
 +POST /osrf-gateway-v1 HTTP/1.1
 +POST /osrf-gateway-v1 HTTP/1.1
 +POST /osrf-gateway-v1 HTTP/1.1
 +POST /osrf-gateway-v1 HTTP/1.1
 +POST /osrf-gateway-v1 HTTP/1.1
 +</code>
 +
 +**Gateway calls:**
 +<code>
 +open-ils.auth.session.retrieve
 +open-ils.actor.patron.settings.retrieve
 +open-ils.search.biblio.lit_form_map.retrieve.all
 +open-ils.search.biblio.item_form_map.retrieve.all
 +open-ils.search.biblio.bib_level_map.retrieve.all
 +open-ils.search.biblio.audience_map.retrieve.all
 +open-ils.search.biblio.item_type_map.retrieve.all
 +open-ils.circ.copy_location.retrieve.all
 +</code>
  
scratchpad/xulrunner_caching_comparison.1307559367.txt.gz · Last modified: 2022/02/10 13:33 (external edit)

Except where otherwise noted, content on this wiki is licensed under the following license: CC Attribution-Share Alike 4.0 International
CC Attribution-Share Alike 4.0 International Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki

© 2008-2022 GPLS and others. Evergreen is open source software, freely licensed under GNU GPLv2 or later.
The Evergreen Project is a U.S. 501(c)3 non-profit organization.