API stands for Application Programming Interface. A program's API defines the proper way for a developer to request services from that program.
4
votes
1answer
185 views
In-memory data cache architecture for data transfer
I am writing a cron job to manipulate and transfer remote data.
I need to cache data from a table, process it, merge with previous table, iterate the process, and eventually send the result data to ...
2
votes
2answers
139 views
Refactoring Logger interface to open and close logs
I asked a question about an implementation of a logger using syslog and error_log as fallback that made me re-evaluate my ...
3
votes
2answers
115 views
Structure of API wrapper
I'm building an API wrapper for a bookkeeping SOAP API.
I have some questions regarding bast practice for structure of the wrapper and for error handling.
For now i've structured it like this:
...
2
votes
1answer
152 views
Designing function prototypes for a singly-linked list API in C
I am in the process of rewriting in C all the data structures that I learned about a few years ago to increase my understanding of data structures and the C language. The first one I'm doing is ...