You need to add logic after login to unsubscribe from items you no longer need. There’s a limit on concurrent subscriptions per connection, so it’s important to manage them properly.
func removerListeners(tableName: String) {
// Elimina todos los create listeners en esa tabla
Backendless.shared.data.ofTable(tableName).rt.removeCreateListeners()
print(“Todos los listeners de creación eliminados.”)
}