Is Mirror Networking good and what's the business model?

Does mirror charge you later if you have more concurrent players like Photon?

What are your experiences using Mirror?

No, Mirror in itself is completely free and open source. They won’t charge you for anything. The caveat is that you need to host it on your own dedicated server.

There’s Mirror PRO, though. The lowest tier gives you access to three other tools, which you may or may not need depending on your needs:
https://github.com/sponsors/vis2k/

They also offer a service called “List Server”, which costs $20/month: https://mirror-networking.com/list-server/

1 Like

Ah, interesting!

Do you have to keep paying to use those three other tools?

What’s the difference between using List server and just setting up my own server?

Also does Mirror support matchmaking?

There are docker containers running Unity so you could host it in a cloud service. Question is what it will cost though with network costs and CPU/memory/disk

So is List server cheaper than say something I could setup on AWS or Digital Ocean?

Its hard to beat 20 USD per month. Though you still need to host the dedicated servers. Or will players self host? That was the norm in the days. But its less and less the approach today

I guess I don’t quite understand what List server is for. Could you explain what kind of scenario it’s used in? I definitely want an authoritative server.

Also do you know if Mirror supports matchmaking?

Its listing the ongoing matches. But you need to host these somwhere if you dont want the players to self host. You can have a authoritative server even when player is host. But the one being server can cheat offcourse

Ah, I see. Yeah, I’m thinking everything is going to be happening on my own dedicated server via AWS or something. The client would only ever be able to request data, it’ll never be able to send update queries to the database.

I’m not really understanding the value of the List server. The Unity client itself could display the matches that are going on for my game.

You need a master server that keep tracks of all running games. This list games server is doing that (I think, bad name)

Oh, interesting. When you say games do you mean completely different games (like one game is an FPS and another is a turn based game)? Or different matches (same game but lots of different rooms where everyone is playing the same game)?

If I’m understanding correctly you’re saying Mirror can handle server to client (or client to client) communication but can’t manage multiple matches so it requires a master server which manages the matches?

A matchmaking server fills two roles: matchmaking and relaying data between players. Just about everyone with a normal ISP is behind what is known as a “NAT”. A NAT essentially makes it impossible for someone to connect to the player from outside of the NAT. The solution is that both players connect to the relay server and send their data to each other through it. Alternatively if there is a dedicated server it can handle the relaying.

Some platforms like Steam provide matchmaking and relay services, but they come with the caveat that you can only match with players on that service and not across all services.

https://en.wikipedia.org/wiki/Network_address_translation

2 Likes

So the List server is a matchmaking server?

Yes, based on everything said about it. Like @MDADigital mentioned a few posts ago it’s badly named.

Thanks for clarifying stuff. I’m planning on building a fully authoritative server. Where the client is just basically telling the server what the player did will never determine what’s actually happening.

Is Mirror only able to relay to all players on the server only? Is there no concept of rooms in Mirror so that I can just relay data back and forth between like 2 players?

The creators/maintainers of Mirror also have Asset Store packages which previously ran on Unet before it was deprecated, but now use Mirror. uMMORPG is one example.

There are some other assets, such as Noble Whale’s Match Up, that also work with Mirror. Noble Whale hosts a free matchmaking server that you can use during development.

2 Likes

Match Up looks exactly what I’m looking for. Any recommendations for secure authentication?

No, sorry. Maybe someone else has recommendations?

Mirror deva also create ECS compatible networking solution. This is separate and paid in contrast asset.

Alternatively, using new Unity DOT Networking solutions, which deals with lag and authoring.