There used to be things like this on Apple's website, too: https://www.apple.com/media/us/osx/2012/docs/OSX_for_UNIX_Us...
I can't find any mention of UNIX in Big Sur's pages, even though it is listed as certified on the Open Group's website.
Newer filesystems and application designs have eliminated many of the differences, although I still miss resource forks.
So the library deciding how to load and possibly when to evict sounds like it was kind of the point. Simulating what might be the job of mmap() on a modern system.
Resources also provided the programmer with a way of working with the data in a structured way. Unix is of course remarkably primitive here, you'll get bytes and like it.
It's always a little funny to see the scorn Unix minimalists have for the old Mac OS. It seems very hard for some people to understand that rather than technical purity or whatever, the Mac developers were working from the interface on in, and the interface was meant to make the computer approachable for people who'd never touched one before and weren't interested in computers for their own sake.
My understanding is that's where file tags, file comments and custom file icons are stored.
NTFS also has multiple forks, and also has many of the same fancy attributes capabilities that made the BeOS filesystem (in)famous, but they're not used in the same way, so it's kind of moot.
What really what made BeOS and Mac OS good was not so much the technical underpinnings, but the way they exposed these in the APIs and standard applications.
The power of Unix isn't just from the presence of the standard I/O routines, but the fact that most programmes are written to adhere to a specific paradigm that allow them to work together.
That said, I think metadata about a file outside of the file has always been problematic. I don't know if there's ever been a clean solution to timestamps, r/w/x, ACLs and more.
It's like having an attic or a garage where you can put stuff while you (do not) decide what to do with it.
Then you carry around this clutter everywhere.
Developers might add something to a resource fork that should go in the file.
Utilities have to deal with files AND resource forks.
You have to backup a file, but then you also have to back up the resource fork.
If it goes to another filesystem you have to figure out how to deal with it if the filesystem deals with only, you know, files.
so what if the file and the resource fork are separated? Then you have a file that might not work.
this burden is carried by the developers, the administrators, the users.
There are plenty of analogous situations to this, like ftp
ftp used to have two connections - a control connection and a separate data connection.
Then when you had a firewall, you had to deal with an outgoing connection, plus an outgoing or incoming data connection.
Then they added passive mode, and you only had to deal with two connections in the same direction, but there had to be special firewall logic to track them both.
That is not true. The desktop metaphor, for example, was first introduced at Xerox PARC in 1970, and used commercially in the Xerox Star workstation in 1981.
Not to mention the OS X-like variants for their other platforms: iOS, tvOS, iPadOS, watchOS...
Also consider the various Mach implementations on Apple hardware: MacMach, MachTen, MkLinux, OS X/Darwin...
Sadly it seems that the classic Mac API died when Carbon and 32-bit apps died, so you can't easily port old Mac apps to modern macOS. macOS (and iOS) seem to have a rather poor record for backward compatibility, and it's only going to get worse with the current architectural switch to Apple Silicon...