06-09-2008 10:52 AM
10-03-2008 06:31 AM
#!/bin/bash
#
# Simple node limit test script by LouiSe@louise.hu
#
# Known Linux limitation:
# - Ext2, Ext3: 32000
# - ReiserFS: 64K
#
TESTDIR="test"
LIMIT=100000
a=1
mkdir ${TESTDIR}
while [ "$a" -le $LIMIT ]
do
echo "mkdir ${TESTDIR}/$a"
mkdir "${TESTDIR}/$a"
let "a+=1"
done
10-16-2008 09:44 AM
10-16-2008 10:55 AM
12-22-2008 09:05 PM
We had a batch job which added thousands of users to the Alfresco store using addAuthority, addPerson, etc. An index was created for every call to these methods. We switched to packaging these calls as one transaction job. This seems to only create one index and is much more efficient.
06-27-2009 04:43 AM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.