If this search is not running in a backend workflow … then it is done from the client interacting with the server to bring in to the page the results of that search
Thank you, I might transfer the operation to the back-end.
From what i understand the bubble engine is smart regarding what operations can be done on the server side.
For example the :count operator will run server-side (if no advanced constraints or filters are present) and only send the client the resulting integer, it will not send all the things that resulted from the search.
In the operation i listed above there are three options really,
a) the server will feed the client all the Things that resulted from the search
b) the server only feeds the list of Numbers of the Things, and the averaging has to run client side
c) the server only feeds the final averaged Number, allowing for the client to run nothing.
I really hope that its option C, but im not sure it actully is.