Skip to content

hanczaryk/MLApp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

MLApp Usage

Shell script to add 325 MB (change HOST and PORT values)

#!/bin/sh
XEND=325
X=1
while [ $X -le $XEND ]
do
 curl http://HOST:PORT/MLApp/MLVectorParam?myaction=add 2&>1
 X=`expr $X + 1`
done

Shell script to remove 325 MB (change HOST and PORT values)

#!/bin/sh
XEND=325
X=1
while [ $X -le $XEND ]
do
 curl http://HOST:PORT/MLApp/MLVectorParam?myaction=removeLast 2&>1
 X=`expr $X + 1`
done
curl http://HOST:PORT/MLApp/GC 2&>1

Releases

No releases published

Packages

No packages published