Hi, your questions seem to be more about general networking best practices outside of your connection dropping Wi-Fi.
In any environment where you have multiple use cases for networked devices you should consider using VLAN's. This means the following: If you have teacher pc's, put them in a VLAN, if you have switches, put their management IP's in a VLAN. If you have printers, put them in their own VLAN.
For structured addressing: if the organization or school group has no more than 255 locations then you are safe to carve out a /16 for each location (for example: location 52 gets the IP space 10.52.0.0/16) Then you can further carve up that address space into /24's for local VLAN's. You can use different masks but it makes it so much easier for your management if you can keep at the 3rd octet boundary for your VLAN's. So if printers are for example the 3rd VLAN you can use 10.52.3.0/24).
The advantage VLAN's give is the following: you create smaller broadcast domains for light devices like IoT devices to not fail due to too many broadcasts and you force traffic to other devices types to pass over a layer 3 switch or a firewall so you can apply policy.
The reason why VLAN 1 is disliked is because there are many peculiarities in VLAN 1 and each networking vendor has some special meaning for it making the behavior not quite defined and in networking you don't want your network to have undefined behavior.
When building out your network, use tried and true designs:
If having a single building or a few buildings touching each other then just have a 2 tier architecture with a stack of 2 layer 3 distribution switches and have each networkingcloset connect back to those distribution switches via at least 2 fiber links with a few spare fiber strands for easy replacement if needed). Each closet should have or a single switch or a stack of switches, never daisy chain switches. Make sure your uplink bandwidth over subscription does not exceed 20:1 (this means if you are connecting 20 ports of 1 gig on a switch or stack your uplink to the distribution switches need to have at least 1 Gig. If you exceed those 20 ports you need more bandwidth and consider using 10 gig links. Failure to do so will cause more uplink packet drops. If you have multiple buildings that are too far together to connect each closet, consider multiple distribution switch pairs and connect these in a full mesh with the other distribution blocks. However when you have more than 3 distribution blocks consider having a 3 tier architecture having core switch pair that connects all distribution switches.
As far as your Wi-Fi drops go: try to find out why the connection is dropping
- RF issues: too little coverage (could be AP's at maximum power and still too little receive power = bad coverage), too much interference from neighboring AP's, too busy channels
- NIC driver issues: devices can behave poorly due to firmware issues. if a specific wifi chip is having issues try to identify it and update all the devices of a certain chip.
- AP issues: yes Meraki devices can have bugs. A reboot or firmware update can sometimes offer solution.
- External server issues: DHCP, DNS, Radius, all these protocols need to run correctly and can cause issues on your network.