Perform Script On Server
Overview
PSOS takes some of the routines that normally happen on the client, and does them on the server instead. This can make things a lot faster if, for example, you're finding a lot of records in a table where each record is very big (has either lots of fields or some fields have tons of data).
When such a find is done on the server, the *whole* record doesn't need to come over the wire to your client: only the data that the calendar needs comes over.
This speed up is most noticeable when you're on the WAN: when your FileMaker client is not on the same physical network as your FileMaker Server. The further away these two are, the more PSOS can help.
To learn more about PSOS we recommend these two great articles by Beezwax:
Using PSOS (Perform Script On Server)
To use PSOS in DayBack you have to be running on FileMaker Sever =) and edit the script "Load Calendar Settings - On Startup --- Edit Configuration Here ---". Right towards the beginning of the script you'll see the comment "Would you like to use "PSOS" (Perform Script on Server) when possible?". It's currently set to True. Switch it to False if you'd like to turn this off.
That's all you have to do, but you may be interested in what that switch actually does. It tells DayBack to use PSOS if it can. Later in the same script you'll see the comment "If PSOS is on, make sure PSOS is available."
After that comment DayBack actually tests the server to see if you can use PSOS. DayBack runs a quick simple script on the sever to make sure your server supports PSOS and that you haven't exceeded the number of simultaneous PSOS sessions permitted. It also checks if you're running without server, as you may be when you're developing.
Each script called with PSOS also tests that you haven't exceeded the number of simultaneous PSOS sessions permitted and runs locally if you have.
In this way DayBack only uses PSOS when it can, so you don't have to keep messing with that switch as you move on and off your server.
Why Make This a Switch? Would You Always Want to Run This Way?
While we love PSOS for it's speed boost there are three reasons why you may not want to use it.