与未经身份验证的用户一起使用Twitter API 1.1的最佳方式

I apologize in advance for my English.

I need to get the last tweets about a specific subject (for example.. well.. Twitter!).

Today, i use https://search.twitter.com/search.json?q=twitter to obtain that. But as you know this is deprecated and it will shutdown. So i try to use the 1.1 API with PHP (twitteroauth) but i have this issue:

Every visitors of my website get the last twitter statuses about a subject with AJAX. If the visitor stay in my page, the twitter data will be refreshing all 10 seconds.

EDIT : Please note that i have a big amount of pages and the subject is different in every of them.

Today, the majority of my visitors are not authenticated by my website, and by twitter. If i use the PHP-way to get data and display to my visitors, i will be rate limited if the amount of my visitors are too high. There is my questions:

  1. There is a way to build some "anonymous" token with my secret keys to "delegate" the rate limit window to my "anonymous" user?
  2. If not, my use of the API 1.1 are realistic? How?
  3. And, if not again, what is your recommandation, your advice to solve this?

Thank you very much for the enlightenment!

I decided to use the streaming APIs with PHP CURL with AJAX to get my data.