Hi again,
After few hours of work I finally came out with a work around (let's call it temporary fix ?) Here is a Howto that I hope will help everyone who's concern by the issue :
I've found out that parsing the tag {JFBCFan} from regex was causing a
high latency on my server, why ? I didn't figured it out yet I'm not php expert.
However, I made a fix that needs a little hack of JFBCSystem plugin.
Open ../plugins/system/jfbcsystem/jfbcsystem.php
Find (line 320) :
$regex = '/\{('.$this->scTags.'|JFBC|JLinked)(.*?)}/i';
Replace with :
$regex = '/\{(?!JFBCFan)('.$this->scTags.'|JFBC|JLinked)(.*?)}/i';
Save
What it does is changing the regex code by avoiding to parse the tag {JFBCFan}, after this hack the tag will not work anymore, so if you were using this tag then you have to go here
developers.facebook.com/docs/plugins/page-plugin
and create your Facebook fan page code automatically, you only need the plugin code, not SDK Javascript because JFBC Connect already include it, then past the code instead of your {JFBCFan} tag or where you want.
Remember, after this you must empty your joomla cache, then load for example your home page 1 or 2 times before it takes into effect.
Right now my TTFB is back to normal on my test site (0.4 sec over main page instead of 1.5 sec or 1.8 sec, it's a big gain !), soon I'll apply the hack to the production site.
Thank you.
Best regards,
Erik