<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>optimisation Archives - Tricky Enough</title>
	<atom:link href="https://www.trickyenough.com/tag/optimisation/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.trickyenough.com/tag/optimisation/</link>
	<description>Explore and Share the Tech</description>
	<lastBuildDate>Tue, 01 Jul 2025 23:49:07 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	

<image>
	<url>https://www.trickyenough.com/wp-content/uploads/2021/05/favicon-32x32-1.png</url>
	<title>optimisation Archives - Tricky Enough</title>
	<link>https://www.trickyenough.com/tag/optimisation/</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">100835972</site>	<item>
		<title>React Performance Optimisation: Techniques to Improve Speed</title>
		<link>https://www.trickyenough.com/react-performance-optimisation-techniques-to-improve-speed/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=react-performance-optimisation-techniques-to-improve-speed</link>
					<comments>https://www.trickyenough.com/react-performance-optimisation-techniques-to-improve-speed/#respond</comments>
		
		<dc:creator><![CDATA[Ajaypal Sharma]]></dc:creator>
		<pubDate>Fri, 27 Jun 2025 23:57:28 +0000</pubDate>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[optimisation]]></category>
		<category><![CDATA[Performance]]></category>
		<category><![CDATA[react]]></category>
		<category><![CDATA[react js]]></category>
		<category><![CDATA[speed]]></category>
		<guid isPermaLink="false">https://www.trickyenough.com/?p=164301</guid>

					<description><![CDATA[<p>React is a popular JavaScript library for creating user interfaces, especially single-page applications (SPAs). While React simplifies the creation of interactive and dynamic online apps, speed optimisation becomes increasingly important as the application&#8217;s complexity grows. Without sufficient optimisation, performance might suffer, leading to slow rendering, longer load times, and a worse user experience. In this...</p>
<p>The post <a href="https://www.trickyenough.com/react-performance-optimisation-techniques-to-improve-speed/">React Performance Optimisation: Techniques to Improve Speed</a> appeared first on <a href="https://www.trickyenough.com">Tricky Enough</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>React is a popular JavaScript library for creating user interfaces, especially single-page applications (SPAs). While React simplifies the creation of interactive and dynamic online apps, speed optimisation becomes increasingly important as the application&#8217;s complexity grows. Without sufficient optimisation, performance might suffer, leading to slow rendering, longer load times, and a worse user experience. In this article, we&#8217;ll look at different approaches for React performance optimisation to ensure your apps operate smoothly and efficiently.</p>



<h2 class="wp-block-heading"><strong>1. Use React&#8217;s Built-in Performance Tools</strong></h2>



<p>React provides several built-in tools to help developers monitor and improve performance:</p>



<ul class="wp-block-list">
<li><strong>React Developer Tools</strong>: This Chrome and Firefox plugin allows you to view the React component tree, analyse renders, and identify which components are re-rendering excessively.<br></li>



<li><strong>Profiler API</strong>: The React Profiler is included with React DevTools and allows you to visualise the performance of your React application by tracking rendering behaviour. It highlights which components take the longest to render and how frequently they are re-rendered.</li>
</ul>



<h2 class="wp-block-heading"><strong>2. Minimise re-renders</strong> with shouldComponentUpdate and React.<strong>memo</strong></h2>



<p>Unnecessary re-rendering of a component can harm performance, especially if the component is complex or requires intensive computations. React offers multiple ways to manage re-renders:</p>



<p><strong>shouldComponentUpdate</strong><strong> (Class Components)</strong>: This lifecycle method returns a boolean result, allowing you to determine when a component should re-render. If you return false, the component will not render again.</p>



<div class="wp-block-group is-vertical is-layout-flex wp-container-core-group-is-layout-8cf370e7 wp-block-group-is-layout-flex">
<p><em><mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-vivid-green-cyan-color">class MyComponent extends React.Component {</mark></em></p>



<p>&nbsp;<em><mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-vivid-green-cyan-color">&nbsp;shouldComponentUpdate(nextProps, nextState) {</mark></em></p>



<p>&nbsp;&nbsp;&nbsp;&nbsp;<em><mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-vivid-green-cyan-color">return nextProps.someValue !== this.props.someValue;</mark></em></p>



<p><em><mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-vivid-green-cyan-color">&nbsp;&nbsp;}</mark></em></p>



<p><em><mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-vivid-green-cyan-color">}</mark></em></p>
</div>



<div class="wp-block-group is-vertical is-layout-flex wp-container-core-group-is-layout-8cf370e7 wp-block-group-is-layout-flex">
<p><strong>React.memo (Functional Components)</strong>: React.memo is a higher-order component that covers a functional component and avoids redundant re-renders if the component&#8217;s props remain unchanged.<br><br><em><mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-vivid-green-cyan-color">const MyComponent = React.memo(function MyComponent(props) {</mark></em></p>



<p>&nbsp;<em><mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-vivid-green-cyan-color">&nbsp;return &lt;div&gt;{props.someValue}&lt;/div&gt;;</mark></em></p>



<p><em><mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-vivid-green-cyan-color">});</mark></em></p>
</div>



<h2 class="wp-block-heading"><strong>3. Lazy Loading Components</strong></h2>



<p>Lazy loading is the technique of loading only the application&#8217;s necessary components or chunks as needed. This can dramatically lower your application&#8217;s initial load time while improving its perceived performance.</p>



<p>React’s React.lazy and Suspense allow you to load components dynamically:</p>



<div class="wp-block-group is-vertical is-layout-flex wp-container-core-group-is-layout-8cf370e7 wp-block-group-is-layout-flex">
<p><em><mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-vivid-green-cyan-color">const MyComponent = React.lazy(() =&gt; import(&#8216;./MyComponent&#8217;));</mark></em></p>



<p><em><mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-vivid-green-cyan-color">function App() {</mark></em></p>



<p>&nbsp;&nbsp;<em><mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-vivid-green-cyan-color">return (</mark></em></p>



<p><em><mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-vivid-green-cyan-color">&nbsp;&nbsp;&nbsp;&nbsp;&lt;Suspense fallback={&lt;div&gt;Loading&#8230;&lt;/div&gt;}&gt;</mark></em></p>



<p>&nbsp;<em><mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-vivid-green-cyan-color">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;MyComponent /&gt;</mark></em></p>



<p>&nbsp;&nbsp;<em><mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-vivid-green-cyan-color">&nbsp;&nbsp;&lt;/Suspense&gt;</mark></em></p>



<p>&nbsp;&nbsp;<em><mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-vivid-green-cyan-color">);</mark></em></p>



<p><em><mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-vivid-green-cyan-color">}</mark></em></p>
</div>



<p>By using lazy loading, you may divide your program into smaller bundles that are loaded only when necessary, resulting in faster initial load times.</p>



<h2 class="wp-block-heading"><strong>4. Virtualisation for Large Lists</strong></h2>



<p>Rendering huge lists or grids might be a performance issue if each item requires a complicated render. React Virtualisation is a library that allows you to render only the objects visible in the viewport, minimising the number of DOM elements while improving speed.</p>



<p>Popular libraries like react-window and react-virtualised provide optimised solutions for rendering large datasets in a virtualised list.</p>



<div class="wp-block-group is-vertical is-layout-flex wp-container-core-group-is-layout-8cf370e7 wp-block-group-is-layout-flex">
<p><em><mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-vivid-green-cyan-color">const MyList = () =&gt; (</mark></em></p>



<p>&nbsp;&nbsp;<em><mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-vivid-green-cyan-color">&lt;List</mark></em></p>



<p>&nbsp;&nbsp;&nbsp;&nbsp;<em><mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-vivid-green-cyan-color">height={400}</mark></em></p>



<p>&nbsp;&nbsp;&nbsp;<em><mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-vivid-green-cyan-color">&nbsp;itemCount={1000}</mark></em></p>



<p>&nbsp;&nbsp;&nbsp;&nbsp;<em><mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-vivid-green-cyan-color">itemSize={35}</mark></em></p>



<p>&nbsp;&nbsp;&nbsp;&nbsp;<em><mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-vivid-green-cyan-color">width={300}</mark></em></p>



<p>&nbsp;<em><mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-vivid-green-cyan-color">&nbsp;&gt;</mark></em></p>



<p><em><mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-vivid-green-cyan-color">&nbsp;&nbsp;&nbsp;&nbsp;{({ index, style }) =&gt; &lt;div style={style}&gt;Item {index}&lt;/div&gt;}</mark></em></p>



<p>&nbsp;<em><mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-vivid-green-cyan-color">&nbsp;&lt;/List&gt;</mark></em></p>



<p><em><mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-vivid-green-cyan-color">);</mark></em></p>
</div>



<h2 class="wp-block-heading"><strong>5. Use Immutable Data Structures</strong></h2>



<p>Immutable data structures help to avoid unwanted re-renders by making it easier to detect changes. Using immutable data allows React to easily compare the old and new states, optimising the re-rendering process.</p>



<p>To generate immutable data structures in JavaScript, utilise libraries such as <a href="https://immutable-js.com/" target="_blank" rel="noreferrer noopener nofollow">Immutable.js</a> or Immer. This approach allows React to identify changes more effectively and reduces the number of unwanted re-renders.</p>



<h2 class="wp-block-heading"><strong>6. Optimise Context API Usage</strong></h2>



<p>The React Context API enables you to communicate state between components without having to send props explicitly. However, if not utilised appropriately, it might cause performance concerns because every time the context value changes, all components must re-render.</p>



<p>To optimise context performance:</p>



<ul class="wp-block-list">
<li>Avoid updating context values too often.</li>



<li>Use memoisation to avoid unwanted context value recalculations.</li>



<li>Consider using React.memo or shouldComponentUpdate to manage re-renders in components that consume context.</li>
</ul>



<h2 class="wp-block-heading"><strong>7. Debounce and Throttle User Inputs</strong></h2>



<p>If your application relies extensively on user inputs (such as search or form fields), debounce or throttle the user&#8217;s activities to avoid unnecessary re-renders or API requests.</p>



<ul class="wp-block-list">
<li><strong>Debouncing </strong>means delaying the execution of a function until a particular amount of time has passed since the last event.</li>



<li><strong>Throttling </strong>restricts the number of times a function can be executed within a given time frame.</li>
</ul>



<p>Libraries like lodash provide convenient methods for debouncing and throttling.</p>



<div class="wp-block-group is-vertical is-layout-flex wp-container-core-group-is-layout-8cf370e7 wp-block-group-is-layout-flex">
<p><em><mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-vivid-green-cyan-color">import { debounce } from &#8216;lodash&#8217;;</mark></em></p>



<p><em><mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-vivid-green-cyan-color">const handleChange = debounce((e) =&gt; {</mark></em></p>



<p><em><mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-vivid-green-cyan-color">&nbsp;&nbsp;console.log(e.target.value);</mark></em></p>



<p><em><mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-vivid-green-cyan-color">}, 300);</mark></em></p>



<p><em><mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-vivid-green-cyan-color">&lt;input onChange={handleChange} /&gt;</mark></em></p>
</div>



<h2 class="wp-block-heading"><strong>8. Use Web Workers for Heavy Computation</strong></h2>



<p>If your application requires extensive computations, try outsourcing them to a Web Worker. Web Workers enable you to run JavaScript code in a separate thread, keeping the UI thread from becoming stopped and increasing the overall responsiveness of your application.</p>



<h2 class="wp-block-heading"><strong>9. Optimise Images and Assets</strong></h2>



<p>Large images and assets can significantly slow down your React application. To optimise images:</p>



<ul class="wp-block-list">
<li>Use newer formats, <a href="https://www.trickyenough.com/what-is-the-best-webp-to-jpg-converter-our-four-picks/" target="_blank" rel="noreferrer noopener">such as WebP or AVIF,</a> for improved compression.</li>



<li>Implement responsive pictures that load differently according to the user&#8217;s device.</li>



<li>Before adding photos to your project, use ImageOptim or TinyPNG to compress them.</li>
</ul>



<h2 class="wp-block-heading"><strong>10. (SSR) and (SSG)</strong></h2>



<p>Server-side rendering (SSR) and static site generation (SSG) are approaches for generating your React app on a server rather than a client. This can enhance your application&#8217;s performance, particularly on initial load, as well as its SEO.</p>



<p>Frameworks like <a href="https://nextjs.org/" target="_blank" rel="noreferrer noopener">Next.js</a> include built-in support for SSR and SSG, making implementation easier.</p>



<h2 class="wp-block-heading"><strong>Conclusion</strong></h2>



<p>React performance optimisation is a continuous process that necessitates a variety of strategies and technologies. Understanding and adopting these optimisation strategies—such as memoising components, lazy loading, virtual lists, and server-side rendering—can drastically enhance the performance of your React application, providing users with a faster and smoother experience. Remember that performance is an ongoing problem, so profile your application frequently, identify bottlenecks, and implement relevant optimisation approaches.</p>



<p><strong>Suggested:</strong></p>



<p><a href="https://www.trickyenough.com/mistakes-to-avoid-in-react-native-app-development/" target="_blank" rel="noreferrer noopener">10 Mistakes to Avoid in React Native App Development</a>.</p>
<p>The post <a href="https://www.trickyenough.com/react-performance-optimisation-techniques-to-improve-speed/">React Performance Optimisation: Techniques to Improve Speed</a> appeared first on <a href="https://www.trickyenough.com">Tricky Enough</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.trickyenough.com/react-performance-optimisation-techniques-to-improve-speed/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">164301</post-id>	</item>
		<item>
		<title>How To Ensure That Google My Business Page Rank High?</title>
		<link>https://www.trickyenough.com/google-my-business-page-rank-high/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=google-my-business-page-rank-high</link>
					<comments>https://www.trickyenough.com/google-my-business-page-rank-high/#comments</comments>
		
		<dc:creator><![CDATA[Alok Kumar]]></dc:creator>
		<pubDate>Sat, 25 Apr 2020 04:28:10 +0000</pubDate>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Digital Marketing]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Digital]]></category>
		<category><![CDATA[engine]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[optimisation]]></category>
		<category><![CDATA[Optimization]]></category>
		<category><![CDATA[raNK]]></category>
		<category><![CDATA[ranking]]></category>
		<category><![CDATA[Ranking on Google]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[services]]></category>
		<category><![CDATA[tips]]></category>
		<guid isPermaLink="false">https://www.trickyenough.com/?p=13378</guid>

					<description><![CDATA[<p>In today’s dynamic market place scenario, the first step digital marketers take in regard to kick off any firm’s local SEO strategy is to optimize its Google My Business Page. Over the past few years, several aspects of the same have changed a lot fuelling a strong and compelled need to make Google My Business page more...</p>
<p>The post <a href="https://www.trickyenough.com/google-my-business-page-rank-high/">How To Ensure That Google My Business Page Rank High?</a> appeared first on <a href="https://www.trickyenough.com">Tricky Enough</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>In today’s dynamic market place scenario, the first step digital marketers take in regard to kick off any firm’s local <a rel="noreferrer noopener" href="https://www.trickyenough.com/seo-strategy-steps-tips-successfully/" target="_blank">SEO strategy</a> is to optimize its Google My Business Page. Over the past few years, several aspects of the same have changed a lot fuelling a strong and compelled need to make Google My Business page more precise, complete, and creative.</p>



<p>There is no doubt in the fact that Google holds the topmost position in the search market with a 65% percent share and this makes it very much imperative to make your business on top in search results. The prime objective behind a full-fledged Google My Business is to enable local businesses to render to their potential clients what they’re up to and how they strive to cater to their needs. So, you shouldn’t take it lightly as it could be of immense worth. And as it is pretty much simple to do, there shouldn’t be any delay in its maintenance.</p>



<p><em>With Google’s new 3 Pack, the significance of local search results has only raised like never before. Look at a few of the screenshots below for better reference.<br></em>Don’t they look familiar? The latest 3 Pack appears on the top of&nbsp;<a href="https://www.trickyenough.com/organic-traffic/" target="_blank" rel="noreferrer noopener">organic Google search</a>&nbsp;results even on local searches. It means a lot to have these 4 listings and the only way to make the most out of them is to have a right-directional SEO. And this is why it becomes necessary to create and maintain a healthy Google My Business page.</p>



<p><em>It is completely shocking to see that many businesses don’t pay heed to the information mentioned on their profiles on Google My Business. This way they are supposed to lose out crucial clients. Let’s have a look at ways through which you can optimize your page.</em></p>



<h2 class="wp-block-heading">Get access to your Google My Business Dashboard</h2>



<p>Let’s say that your business is already verified. Now you need to move to Google.com/business to look over to your business dashboard. Login and you would get a screen.</p>



<p>It is Google My Business Dashboard that gives folks all kinds of information such as traffic and impressions of over the last 30 days, customer reviews. Here you can choose to share these elements right on your Google+ and YouTube accounts.</p>



<p>Choose Edit given in the top right corner to access your Business info page. From here you can ensure success to your page.</p>



<h2 class="wp-block-heading">Optimize Your Google My Business Page Info</h2>



<p><em>Once you fill all the mentioned fields, the business info bar on top would reach 100%. Don’t take a break in between as this is super important.</em></p>



<h3 class="wp-block-heading">These fields include:</h3>



<h4 class="wp-block-heading">Business Name</h4>



<p>This is where you should mention your real business name. Do not embed in extra words just with a purpose to get some sort of help in regard to <a href="https://www.trickyenough.com/seo-legitimate-or-fraudulent/" target="_blank" rel="noreferrer noopener">SEO</a>. Take care of spaces between words so as to avoid any language mistakes.</p>



<h4 class="wp-block-heading">Address</h4>



<p>Your address and regions would come out immediately from verifying your business information. But if you wish to change, just hover and click to edit. If you are a local business that caters to a closer-knit geographical region, keep the geographic area small so your results are concentrated to those regions only.</p>



<h4 class="wp-block-heading">Contact Info</h4>



<p>Make sure the contact information you put here is genuine and reachable. For best results, use a local number in regard to the phone number.</p>



<h4 class="wp-block-heading">Category</h4>



<p>This is truly important. This is where most of the businesses commit mistakes that further affect rankings. You can also choose to list multiple categories that would certainly add value but make sure it is not spam. Choose many categories that are relevant to your business.</p>



<p>Also Read:&nbsp;<a href="https://www.rankontechnologies.com/local-seo/" target="_blank" rel="noreferrer noopener nofollow">Local SEO Company in India</a></p>



<h4 class="wp-block-heading">Hours</h4>



<p>Here you need to mention your working hours for each day.</p>



<h4 class="wp-block-heading">Introduction</h4>



<p>This is more likely an opportunity to mention something relevant for your business and the services it offers. You can also choose to link out from your introduction to various sections of your actual website.</p>



<h4 class="wp-block-heading">Manage Your Photos</h4>



<p>Go back to the main dashboard and click on “manage photos”</p>



<h4 class="wp-block-heading">Identity Photos</h4>



<p>There are several sections in The Business Photos section. The first section is called “Identity Photos” and this is very important. You need to upload 3 photos – A Profile Photo, A Logo Photo, and a Cover Photo.</p>



<p>Always remember that these photos may appear in search results, so, always choose good photos that exhibit a strong appeal of your business.</p>



<h4 class="wp-block-heading">Interior Photos</h4>



<p>Here you can display your office, shop, and workshop photos that would define what your ambiance looks like.</p>



<h4 class="wp-block-heading">Exterior Photos</h4>



<p>If you want customers to know what your place of business looks like from the outside, this would be the place to put recognizable photos so they can find it.</p>



<p>Also Read:&nbsp;Best PPC Marketing Company In India</p>



<h4 class="wp-block-heading">Photos at work</h4>



<p>This section gives you an opportunity to exhibit more about your business, its philosophy, working culture, people, job profiles, and a lot more.</p>



<h4 class="wp-block-heading">Team Photos</h4>



<p>Here you can show the picture of your people working together as a team.</p>



<h4 class="wp-block-heading">Additional Photos</h4>



<p>If you’ve any photo that doesn’t fit perfectly to the above categories, but still relevant for your business, this is where it should go.</p>



<h2 class="wp-block-heading">Summary</h2>



<p><em>The above-given steps may be of immense help for you to make your Google My Business page up and running. By maintaining it properly, you would make your business appear in local search results. Always follow best practices when it comes to complete and maintain your business page.</em></p>
 <p>The post <a href="https://www.trickyenough.com/google-my-business-page-rank-high/">How To Ensure That Google My Business Page Rank High?</a> appeared first on <a href="https://www.trickyenough.com">Tricky Enough</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.trickyenough.com/google-my-business-page-rank-high/feed/</wfw:commentRss>
			<slash:comments>5</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">13378</post-id>	</item>
	</channel>
</rss>
