Hello all,
I am in the process of converting an old EE 1.x site over to Statamic. This site has around 250 blog posts dating back to 2004. I was able to successfully convert all of these posts into markdown files.
The homepage includes the latest blog entry. I am doing a simple call to grab this:
{{ entries:listing folder="blahg" limit="1" }}
<header>
{{ theme:partial src="date" use_context="true" }}
<h2>{{ title }}</h2>
</header>
<p><a class="btn" href="{{ url }}" title="Read On">Read On</a></p>
{{ /entries:listing }}
This works as expected, but I am seeing a huge slowdown. Without calling the latest entry, I am seeing pages rendered around 0.18s. With the entry, it bumps up from 1.7s to 2s.
This site will be utilizing Bison, so I don't think caching will be a viable option. Any tips?