https://bitbucket.org/sivann/runcached/
Spiros Ioannou 67269ad7b5 LICENSE | 6 년 전 | |
---|---|---|
LICENSE | 6 년 전 | |
Makefile | 10 년 전 | |
README.md | 9 년 전 | |
contributors.txt | 10 년 전 | |
gittag.sh | 10 년 전 | |
runcached | 8 년 전 | |
runcached.c | 8 년 전 | |
runcached.py | 10 년 전 | |
runcached.sh | 10 년 전 |
Execute commands while caching their output for subsequent calls. Command output will be cached for seconds and "replayed" for any subsequent calls. Original exit status will also be emulated.
After cacheperiod has expired, command will be re-executed and a new result will be cached. Cache data is tied to the command and arguments executed and the path of the runcached executable. Cache results are stored in /tmp
You can use runcached to run resource-expensive commands multiple times, parsing different parts of its output each time. Those commands will be run only once for each cacheperiod.
Implementation is provided in 3 languages, python, C, BASH. Of course the BASH version is not really suggested but it works.
runcached.py [-c cacheperiod]
runcached [-c cacheperiod]
runcached.sh
runcached.py -c 5 date
Query multiple parameters of mysql at the same time, without re-running the query.
#!
UserParameter=mysql.globalstatus[*],/usr/local/bin/runcached.py -c 20 /usr/bin/mysql -ANe \"show global status\"|egrep '$1\b'|awk '{print $ 2}'
And then define some items like so:
#!nolang
Item Name Item Key
-------------- --------------
MySQL DELETES mysql.globalstatus[Com_delete]
MySQL INSERTS mysql.globalstatus[Com_insert]
MySQL UPDATES mysql.globalstatus[Com_update]
MySQL CREATE TABLE mysql.globalstatus[Com_create_table]
MySQL SELECTS mysql.globalstatus[Com_select]
MySQL Uptime mysql.globalstatus[Uptime]
MySQL ALTER TABLE mysql.globalstatus[Com_alter_table]
E.g. for DELETE:
Type: Numeric,
Data Type: Decimal.
Units: QPS
Store Value: Delta (Speed per second)
Show Value: As Is