Hi everyone,
I've been writing source code walkthroughs for the Redis source code (like
this one), and here's something I haven't been able to figure out:
Why are some internal library files named with "a" as the prefix? Examples:
- ae.h (event loop library)
- anet.h (networking library)
- adlist.h (linked list library)
This isn't the case for _all_ internal library files, examples:
- sds.h (dynamic strings)
- dict.h (dynamic tables)
Tried looking at commit history, but all of these files were presented in the initial commit to Redis, and I can't find to seem anything obvious that makes them different from other files that don't have the "a" prefix.
- Paul