xref: /netbsd-src/external/ibm-public/postfix/dist/src/global/scache_multi.ref (revision 41fbaed053f8fbfdf9d2a4ee0a7386a3c83f8505)
1>>> # Initialize
2>>>
3>>> verbose 0
4>>> cache_type multi
5>>>
6>>> # Destination name space collision test
7>>>
8>>> save_dest 2 a_dest a_prop b_endp
9>>> sleep 1
10>>> save_dest 2 a_dest a_prop b_endp
11>>> sleep 1
12>>> save_dest 2 a_dest a_prop b_endp
13>>> sleep 2
14>>>
15>>> # Another destination name space collision test
16>>>
17>>> save_dest 2 a_dest a_prop b_endp
18>>> sleep 1
19>>> save_dest 2 a_dest a_prop2 b_endp
20>>> sleep 1
21>>> save_dest 2 a_dest a_prop2 b_endp2
22>>> sleep 2
23>>>
24>>> # Endpoint name space collision test
25>>>
26>>> save_endp 2 b_endp b_prop 12
27>>> save_endp 2 b_endp b_prop 13
28>>> sleep 3
29>>>
30>>> # Combined destiation and endpoint collision test with lookup
31>>>
32>>> save_dest 2 a_dest a_prop b_endp
33>>> save_dest 2 a_dest a_prop2 b_endp
34>>> save_dest 2 a_dest a_prop2 b_endp2
35>>> save_endp 2 b_endp b_prop 12
36>>> save_endp 2 b_endp b_prop 13
37>>> find_dest a_dest
38>>> find_dest a_dest
39>>> find_dest a_dest
40>>>
41>>> # Another combined destiation and endpoint collision test with lookup
42>>>
43>>> save_endp 2 b_endp2 b_prop 12
44>>> save_endp 2 b_endp2 b_prop 13
45>>> save_endp 2 b_endp2 b_prop 14
46>>> find_dest a_dest
47>>> find_dest a_dest
48>>> find_dest a_dest
49>>> find_dest a_dest
50>>>
51>>> # Let the exit handler clean up the destiation->endpoint bindings.
52>>>
53