Hey there!
thanks for bringing these libs to so many languages!
I noticed by just including the "chilkat_9_5_0.php" file, my memory usage increased
running(without include and nothing else):
echo memory_get_peak_usage(); exit;
result: 407056
running(with chilkat include):
require_once 'chilkat_9_5_0.php'; echo memory_get_peak_usage(); exit;
result: 15452752
My chilkat version: DllDate: May 26 2017 ChilkatVersion: 9.5.0.68 UnlockPrefix: Anything for 30-day trial Architecture: Little Endian; 64-bit Language: Linux PHP
This seems pretty heavy.. adding roughly 15MB(the numbers should be bytes) on every request or am i wrong?
Or is this the price of using swig as a wrapper?
Also here is a php blackfire profile which shows this: https://blackfire.io/profiles/042db896-1e1a-4e26-a470-1b9c18dfe173/graph
Cheers Max