PeopleCode Multi-threading
Hello!
PeopleTools 8.56.02
FSCM 9.2 Update 11
I have built a REST web service, which uses 11 CI's inside handler PeopleCode to create Items, Purchasing attributes, Products, Assigns Product prices and Assigns Product Groups. Any suggestions to improve performance are welcome.
I know a little bit of python coding, In python there is a library that you can use to for concurrency (multi-thread). Do we have something like to multi-thread the CI create if the CI's are not inter-dependent?
I thought about creating separate local to local synchronous service for each ci's and call %Intbroker.SyncRequest() with an array of messages as a parameter and collect the responses in an array of messages then create the responses. I hope this is not the only way.