wlandgraf
(Wagner Landgraf)
September 7, 2020, 12:49pm
8
You can have more information in the blog post and in the documentation topic .
I see you cross-posted, so we can continue the conversation from your post below.
I have the following entity, and I found event with "cached update", inserting 10000 records still takes 15 seconds (postgresql server), which is unacceptable for my realtime application.
mORMot is x200 times faster than Aurelius with its Batch mode (the same server).
[Entity, Automapping]
[Id('FId', TIdGenerator.None)]
TCustomer = class
strict private
FId: Integer;
FName: string;
FCity: string;
public
property Id: Integer read FId write FId;
property Name: string…