]> git.k1024.org Git - pylibacl.git/blob - BENCHMARK
Fix a compilation warning with python2.4
[pylibacl.git] / BENCHMARK
1 On my Duron 1000, Linux 2.4, creating 1.000.000 ACLs and discarding them:
2
3 empty ACL:  4.48user  0.03system 0:04.50elapsed 100%CPU
4 from text: 13.87user  0.09system 0:13.97elapsed  99%CPU
5 XFS, file: 14.17user 14.95system 0:29.13elapsed  99%CPU
6
7 creating a list from the entries of an ACL:
8 no entries: 3.86user 0.01system 0:03.86elapsed 100%CPU
9 6 entries: 16.39user 0.00system 0:16.38elapsed 100%CPU
10
11 As you can see, creating from file is the longest (as expected). More than
12 half time when creating from file was in kernel mode.
13
14
15 In freebsd 4.6, UNDER VMWARE!!!!, same machine:
16 empty ACL:  3.409u 0.432s 0:03.85 99.4%    516+15695k 0+0io 0pf+0w
17 from text: 10.672u 1.016s 0:11.71 99.7%    508+24230k 0+0io 0pf+0w
18
19 Interesting results, it seems from text is faster here - but here
20 the library doens't support editing, so maybe that's why.