ONS Nedap perfomance
In the ONS Nedap link, the loading time during data retrieval could take longer than desired, this is also known to us under bug number 63973. In two steps, we want to implement improvements for this.
Previously, client data was kept in a shared database and this data was stored encrypted. Nowadays, however, this data is no longer stored on a shared database, but happens on separate databases. These databases are already encrypted, but the extra step of encrypting the data itself still took place.
Since the databases themselves are already encrypted, the encryption of the data is not necessary. The step of encrypting the data largely caused the longer wait time. In this update, we have removed the extra step of encrypting the data, which already significantly reduces the wait time during lookup.
However, there are other processes that affect waiting time and therefore user experience in which we can realise an improvement.
In the lookup process, the wait time is affected because the lookup also needs to process data. We are going to move this part to a background process, so that the lookup action does not have to do any data processing and can therefore show results faster! This will be rolled out in a later update.