What is the perf gains from using a .server extension? I'm wondering because I want to make an object that is accessible by the server and the client, and it makes sense to have it located in the file that holds my server code.
That being said, everything but this object is only run on the server, and this object is the only thing that needs to be on both the server and the client, should I create a new file for that? Is it worth it? Or should I just rename my file to exclude the server extension?