Hi,
First thanks for this wonderful set of tools!
I am building a web app with a custom dynamic NFT collection.
I am trying to use live queries so as to allow bidirectional update of the website from the smart contract when another user changes its NFT state.
I got everything to work quite well by pulling data from the caching database on Moralis but when I use live queries, my React App slow down to a halt. It seems like just creating the subscription object is enough to cause this using the exact same as on doc.
ie. I do not need to add a .on callback to cause the slow downs.
I also made sure to place the socket creation at the top of my React App component tree.
Do you have any experience with this? Should I follow some workflow to make Sockets efficient and fasts?
Thanks!