You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello.
I have Tarantool 1.7.1-123-g17673d5 and php 7.0.9
If I try delete tuple through loop, I have segmentation fault.
PHP script example: <?php $tnt = new Tarantool('remote_ip:3301'); $tnt->connect(); $space = "test"; $key = "test2"; for($i=0;$i<=1000;$i++) { $tnt->delete($space, $key . $i); }
If I try delete tuple through loop with $i=1000 and $i<=100000 - All ok.
The text was updated successfully, but these errors were encountered:
Hello.
I have Tarantool 1.7.1-123-g17673d5 and php 7.0.9
If I try delete tuple through loop, I have segmentation fault.
PHP script example:
<?php $tnt = new Tarantool('remote_ip:3301'); $tnt->connect(); $space = "test"; $key = "test2"; for($i=0;$i<=1000;$i++) { $tnt->delete($space, $key . $i); }
If I try delete tuple through loop with $i=1000 and $i<=100000 - All ok.
The text was updated successfully, but these errors were encountered: