Best practices for using Service Connections
Service connections play a vital role in the VB, enabling external REST APIs and Oracle Cloud Application APIs to be called using the inbuilt catalog. We must use the security connection in a very smart manner in order to reduce the efforts and to increase performance of the applications.
Service connections are used to call any REST APIs to interact with external systems. In the earlier chapters, we created the Service Connections to call external REST APIs, SaaS REST APIs, in order to interact with different systems. Since the Service Connections make the calls to an external system, this may slow down the performance of your application if not used in the correct manner.
Here are a few best practices and recommendations that you should follow while using Service Connections:
- Adding multiple endpoints to the same server
- Using the fine-tuned REST APIs
- Caching the data
- Getting the data in chunks
- Using the inbuilt...