Skip to content

CellProfiler Analyst Developer Tweaks

Mario Emmenlauer edited this page Jun 9, 2016 · 1 revision

MySQL Speedup

Classifier using MySQL can be sped up by installing the UDF in mysql_plugins/classify.c. To add this function to MySQL, compile classify.c to classify.so, and put this in a directory on the LD_LIBRARY_PATH for MySQL, then execute this statement within MySQL:

mysql> CREATE FUNCTION classifier RETURNS INTEGER SONAME 'classify.so';