Edit the standalone.xml in wildfly and disable weld (I disable it by removing the following two lines):
<extensions>
..............
<extension module="org.jboss.as.weld"/>
..............
</extensions>
<profile>
..............
<subsystem xmlns="urn:jboss:domain:weld:2.0"/>
</profile>
Download my sample JSF project and deploy it (Its basically a JSF page with multiple components and an ajax button).
Send ajax requests multiple times and measure the response duration using an inspection tool (I used chrome inspection tool)
Repeat the previous steps with weld enabled and check the responses time difference