>>1062424 (OP)
Are you talking about having an ssd and hdd in the same vdev or pool? If so, DON'T do that. ZFS is not built for this in mind and won't do anything special. You'll have the worst space and performances limitations of boths disks, and none of the benefits.
If you are talking about using an SSD based pool for active work, and using an HDD pool to send snapshots for a backup, then that's both fine and recommended.
If you are asking about using mirrors over raidz2/raidz3, then:
-For IOPs, mirrors are usually significantly better than raidz levels, especially once you hit 3 vdevs in a pool. A single SSD will always be vastly superior to HDDs in regards to IOPs.
-For throughput, it really depends.
-The biggest downside of mirrors is space needed for parity. Mirrors don't make sense for large storage pools. Put data that is written once and occasionally read on a raidz2-3 pool.
-Mirrors are easy to expand with only two disks needed. Great for people starting out with storage.