Cache Implementation
Whenever there will be any update related to connection details including credentials changes or any update in location or automation steps then will receive event.
Will receive an event in below format on a pubsub topic:-
{
"actor": "Lalit Kumar Yadav",
"accountId": 3126,
"response_data": {
"createdAt": "2024-05-16 15:48:31",
"appInstallationId": 1437,
"appId": 533,
"additionalInfo": "Make already existing products available step enabled",
"connectionId": 4558,
"action": "product sync",
"isEdited": false,
"isTurnedOn": true,
"appTitle": "Auperator Shopify",
"target": "apps"
},
"eventSubType": "product_sync",
"resource": "app",
"accountSlug": "siddhant-apparels",
"resource_type": "app.product.sync",
"eventType": "PUT",
"version": "v1"
}
The endpoint in esb-integration engine will listen to this events.
Endpoint
listener/clear/cache/connection
Event Handling
Upon receiving an event, the endpoint will:
Retrieve the Connection ID and App ID: Extract the
connectionId
andappId
from the event data.Determine Associated Application: Identify which application is associated with the
appId
to send the clear cache data.
Example : Woocommerce service cache listener .
Endpoint : clear/woocache/connectionId/{connectionId}
Will list all the cache keys in the application listener and once we receive the event for the connectionId will clear the cache.
In Woocommerce we are using one cache where will save credentials, channel and automationStep related data.Whenever will recieve event on the below endpoint, will flush the cache for woocommerce.
Cache Key : "wooConnectionChannelData_{{connectionId}}
{
"wooConnectionData_{{connectionId}}": "{
"connectionId": "34",
"inputFields": "",
"appIsActive": "active",
"inventory": {
"appAutomationStepId": "152",
"isActive": "1",
"otherDetails": "",
"latestSyncTimeStamp": ""
},
"product": {
"appAutomationStepId": "153",
"isActive": "1",
"otherDetails": "",
"latestSyncTimeStamp": ""
},
"locations": []
}
"