diff --git a/ZFS-RAIDs.md b/ZFS-RAIDs.md index a3cea0930de2bc050d05bf6c78ffa36ff281225f..449518066f8467496401b093f42b19b62fdd43cc 100644 --- a/ZFS-RAIDs.md +++ b/ZFS-RAIDs.md @@ -76,7 +76,7 @@ It's important to know that a RAID0 and RAID1 requires at least two disks, and a ## Cache in ZFS ### Read caching: ARC (**A**daptive **R**placement **C**ache) -: Simple RAM cache, hot data blocks are stored in memory for faster acces, ZFS tries to fill all RAM disponible at max, if max level is achieved, oldest blocks gets flushed from memory and needs to be taken in the disk if a read operation requires then again. +: Simple RAM cache, hot data blocks are stored in memory for faster acces, ZFS tries to fill all RAM disponible at max, if max level is achieved, oldest blocks gets flushed from memory and needs to be taken in the disk if a read operation requires then again. L2ARC (**L**evel **2** **ARC**) -: Adds SSDs in cache flow so oldest data removed from RAM gets on a device faster than hard drives. +: Adds SSDs in cache flow so oldest data removed from RAM gets on a device faster than hard drives. diff --git a/push.sh b/push.sh new file mode 100644 index 0000000000000000000000000000000000000000..250aaa6fb1b1bcaa7e77d5be8db5667cf7501e2c --- /dev/null +++ b/push.sh @@ -0,0 +1,3 @@ +[[ -z "$1" ]] && echo "comment needed" && return 1 + +git add . && git commit -m "$1" && git push