You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SG-36677 Optimize payload by prevent unnecessary data (#360)
* Optimize payload by prevent unnecessary data
* Packaging for pre-release
* Code review improvements
* Improve example
* Improve example
* Process env var
* Format documentation code
* Swap env var logic
* Restrict env var values
* Remove lowercase transform
* Read env var once
* Add unit tests
* Packaging for v3.7.0
Copy file name to clipboardExpand all lines: docs/reference.rst
+30Lines changed: 30 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -949,6 +949,36 @@ Stores the number of milliseconds to wait between request retries. By default,
949
949
950
950
In the case that both this environment variable and the config's ``rpc_attempt_interval`` property are set, the value in ``rpc_attempt_interal`` will be used.
951
951
952
+
953
+
SHOTGUN_API_ENABLE_ENTITY_OPTIMIZATION
954
+
=======================================
955
+
956
+
.. note:: (v3.7.0) This is an experimental feature. Feel free to disable this feature if you are experiencing any issues.
957
+
958
+
When set to ``1``, this environment variable will enable the entity optimization feature.
959
+
This feature is disabled by default and is used to reduce the payload size made to the server when retrieving entities
960
+
improving overall performance by decreasing network latency and server processing.
0 commit comments