summaryrefslogtreecommitdiff
path: root/issues/genenetwork1/gn1-slowness.gmi
diff options
context:
space:
mode:
Diffstat (limited to 'issues/genenetwork1/gn1-slowness.gmi')
-rw-r--r--issues/genenetwork1/gn1-slowness.gmi17
1 files changed, 17 insertions, 0 deletions
diff --git a/issues/genenetwork1/gn1-slowness.gmi b/issues/genenetwork1/gn1-slowness.gmi
new file mode 100644
index 0000000..d632f7c
--- /dev/null
+++ b/issues/genenetwork1/gn1-slowness.gmi
@@ -0,0 +1,17 @@
+# GN1 Slowness
+
+GN1 needs to clean up the following
+
+```
+GNRoot="/gnshare/gn"
+find $GNRoot/web/tmp -mmin +100 -exec rm -rfv {} \;
+find $GNRoot/web/image -mmin +100 -exec rm -rfv {} \;
+mkdir -p $GNRoot/web/tmp
+mkdir -p $GNRoot/web/image
+```
+
+Note that the -delete switch is much faster than -exec, so
+
+```
+find $GNRoot/web/image -mmin +100 -delete
+```