In One minute, how many link we can generate? #3128
Unanswered
IamAkashJoshi
asked this question in
Q&A
Replies: 1 comment 10 replies
-
Generating a short URL costs a couple SQL queries and one external HTTP request if you don't provide a title for the link and expect YOURLS to fetch it for you from the page itself. So, the answer to your question is : how many SQL queries and HTTP requests can your server do in one minute. |
Beta Was this translation helpful? Give feedback.
10 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello There,
We are using this project and every day we need to generate around 1,00,000 links.
Today I observed that our system generates 200 links/minute and it's very slow.
So can you suggest to me that how can I generate 2000+ links/minute?
Domein infomation
this is code sample we are using
string keyword = RandomString(6, true); string urllong = url.Replace(" ", "%20"); service.CreateShortUrl(UrlEncoder.Default.Encode(urllong), auth, out YourlsCreateShortUrlResult result, keyword); return string.IsNullOrEmpty(result.ShortUrl) ? string.Empty : result.ShortUrl;
Please help me with this ASAP.
Thanks
Beta Was this translation helpful? Give feedback.
All reactions