[C #] Performance issues with Servicestack Read and write Redis

Source: Internet
Author: User



Servicestack.redis there is a method called Addrangetolist, this method is a performance problem. The implementation code for this method is as follows:

public void Addrangetolist (string listId, list<string> values) {var ulistid = listid.toutf8bytes (); var pipeline = Cr Eatepipelinecommand (); foreach (var value in values) {pipeline. Writecommand (Commands.rpush, Ulistid, value. Toutf8bytes ());} Pipeline. Flush ();//the number of items after var intresults = pipeline. Readallasints ();}

This actually converts the n data into n commands. Redis's over there. For a single command parsing execution, performance can degrade a lot.


The correct approach is to use bulk rpush. See also: http://redis.readthedocs.org/en/latest/list/rpush.html


With the use of bulk Rpush, the performance of addrangetolist can be increased by one or two orders of magnitude.







[C #] Performance issues with Servicestack Read and write Redis

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.