2009/5/12 daveg0 <[email protected]>
>
> Hi,
>
> We are building a multi-media repository which will include some fairly
> large videos. We have tried storing the blobs internally in MySQL, but are
> running across issues (max_packet_size, connections failing randomly etc).,
> so we thought we'd try external blobs, but I can't seem to get it to work.
>
Try using a file system data store, not a db data store;
<DataStore class="org.apache.jackrabbit.core.data.FileDataStore">
<param name="path" value="${rep.home}/repository/datastore"/>
<param name="minRecordLength" value="100"/>
</DataStore>
--
-Tor