Jump to content

Multiple feeds into wordpress better way to do this?


flyBeta

Recommended Posts

Currently I run a site that aggregates jobs about 100 cities so far and its starting to slow down my sites resources, I use a wordpress plugin to bring in the jobs but its giving me a resources alert.

 

My traffics not that high as of yet, but I'm worried about it causing problems on my shared hosting.

 

Server is running apache. Slow for wordpress?

 

Was just wondering best way to bring in multiple cities (thousands) /feeds and add category for each.

Link to comment
Share on other sites

I used to run like 1,000 or so feeds auto posting through a multi-wordpress years ago.

Had each subdomain a main category, imported categories and tags from original articles.

 

The server at that time was around 120 a month (7 years ago?), it handled it fine, Intel quad Q6700 and used 4 out of the 8 gig available memory.

Page caching for the visitor traffic was a necessity.

 

I would imagine that doing this on a shared host with low specs will have issues.

For what you are planning seems like nothing less than a dedicated server and well planned out.

Constantly hitting feeds and new posts will certainly use lots of resources.

 

To me wordpress got severely bloated and not as good as used to be.

Consider making your own rss aggregator using simplexml.

 

Here is a simple example using simplxml and getting the results into an array so you can then insert into a database.

<?php
$url = "http://science.jobs.net/RSS/";
$xml = @simplexml_load_file($url);

if($xml){
$json = json_encode($xml);
$array = array();
$array = json_decode($json,TRUE);

echo "<pre>";
print_r($array);
echo "</pre>";

} else {
echo "No Data";
}
?>

Feel free to use my feed search to find feed urls.

http://dynaindex.com/feed-urls.php?search=jobs

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.