51%
31.07.2013
The language you choose to use affects I/O patterns and performance. We track a simple write I/O pattern with C and look at how to improve performance.
... Code Example
1 #include
2
3 /* Our structure */
4 struct rec
5 {
6 int x,y,z;
7 float value;
8 };
9
10 int main()
11 {
12 int counter;
13 struct rec my ...
The language you choose to use affects I/O patterns and performance. We track a simple write I/O pattern with C and look at how to improve performance.
... Tuning I/O Patterns in C
51%
10.06.2014
",
22 "description": "public"
23 }
24 ],
25 "ssh_key": true
26 },
27 "disk_driver": "virtio",
28 "nic_driver": "virtio",
29 "uuid": "555793a9-3c32-4eb9-ae81-f
51%
21.08.2014
.loadavg_5min $lavg[1] $ts\n";
24 print $socket "system.loadavg_15min $lavg[2] $ts\n";
25 sleep(60);
26 }
27
28 close($socket);
to port 2003
51%
10.10.2012
tmp DISPATCH_WINDOW # Keywords
test1 0 () () () () () ()
n0001 3 () () () () () ()
default
51%
05.02.2019
_name IN ('version','version_comment');
+-----------------+----------------+
| Variable_name | Value |
+-----------------+----------------+
| version | 10.3.9-MariaDB |
| version_comment | Maria ... What lacked maturity in MariaDB 10.2 has now been sorted out in version 10.3. We look at the benefits you can reap now. ... MariaDB 10.3 ... New features in MariaDB 10.3
51%
07.11.2023
/dev/vg0/lv0
mke2fs 1.46.5 (30-Dec-2021)
Creating filesystem with 483184640 4k blocks and 120799232 inodes
Filesystem UUID: 7df63c80-0c91-4f71-9776-d704dadfad3a
Superblock
51%
26.04.2012
, operating voltage drops from 2.5V for DDR1 to 1.8V for DDR2, and 1.5V for DDR3. DDR3L (1.35V) and DDR3U (1.25V) are two further reductions before DDR4 drops to 1.2V. Continuous miniaturization of the chip
51%
04.02.2014
The new PostgreSQL 9.3 release introduces several speed and usability improvements, as well as SQL standards compliance.
... Total runtime: 1.519.991 ms
25 (4 rows)
LATERAL Statement
Version 9.3 of PostgreSQL now supports LATERAL
as defined in the SQL standard. This keyword allows the developer to use sub ...
The new PostgreSQL 9.3 release introduces several speed and usability improvements, as well as SQL standards compliance.
... PostgreSQL 9.3
51%
09.01.2013
Total runtime: 1.519.991 ms
25 (4 rows)
LATERAL Statement
Version 9.3 of PostgreSQL now supports LATERAL as defined in the SQL standard. This keyword allows the developer to use sub ... The new PostgreSQL 9.3 release introduces several speed and usability improvements, as well as SQL standards compliance. ... PostgreSQL 9.3 ... New in PostgreSQL 9.3
51%
06.10.2022
, as in this code fragment, which implements and calls a multiply function:
package function
multiply(a,b) = m {
m := a*b
}
result1 = r {
r := multiply(3,4)
}
result2 = r {
r := multiply(3,9)
}
The Rego