點破Redis的VM

來源:互聯網
上載者:User

標籤:

Redis的某一個key的value被swap到檔案上的時候,該key的value指向的RedisObject將會改變成VMPointer,VMPointer儲存了該value在磁碟檔案上的資訊,包括起始頁面的位移和連續的頁面數等。


[html] view plaincopy
  1. typedef struct redisObject {  
  2.     unsigned type:4;  
  3.     unsigned storage:2;     /* REDIS_VM_MEMORY or REDIS_VM_SWAPPING */  
  4.     unsigned encoding:4;  
  5.     unsigned lru:22;        /* lru time (relative to server.lruclock) */  
  6.     int refcount;  
  7.     void *ptr;  
  8.     /* VM fields are only allocated if VM is active, otherwise the  
  9.      * object allocation function will just allocate  
  10.      * sizeof(redisObjct) minus sizeof(redisObjectVM), so using  
  11.      * Redis without VM active will not have any overhead. */  
  12. } robj;  


[html] view plaincopy
  1. typedef struct vmPointer {  
  2.     unsigned type:4;  
  3.     unsigned storage:2; /* REDIS_VM_SWAPPED or REDIS_VM_LOADING */  
  4.     unsigned notused:26;  
  5.     unsigned int vtype; /* type of the object stored in the swap file */  
  6.     off_t page;         /* the page at witch the object is stored on disk */  
  7.     off_t usedpages;    /* number of pages used on disk */  
  8. } vmpointer;  


將該key的value匯入記憶體的邏輯如下:

[html] view plaincopy
  1. robj *vmReadObjectFromSwap(off_t page, int type) {  
  2.     robj *o;  
  3.   
  4.     if (server.vm_enabled) pthread_mutex_lock(&server.io_swapfile_mutex);  
  5.     if (fseeko(server.vm_fp,page*server.vm_page_size,SEEK_SET) == -1) {  
  6.         redisLog(REDIS_WARNING,  
  7.             "Unrecoverable VM problem in vmReadObjectFromSwap(): can‘t seek: %s",  
  8.             strerror(errno));  
  9.         _exit(1);  
  10.     }  
  11.     o = rdbLoadObject(type,server.vm_fp);  
  12.     if (o == NULL) {  
  13.         redisLog(REDIS_WARNING, "Unrecoverable VM problem in vmReadObjectFromSwap(): can‘t load object from swap file: %s", strerror(errno));  
  14.         _exit(1);  
  15.     }  
  16.     if (server.vm_enabled) pthread_mutex_unlock(&server.io_swapfile_mutex);  
  17.     return o;  
  18. }  



點破Redis的VM

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.