Home php教程 php手册 ssdb的Yii cache扩展

ssdb的Yii cache扩展

Jun 06, 2016 pm 08:12 PM
cache google Level yii Expand

google的leveldb越来越被很多人接受。国内的ideawu基于leveldb还写了一个ssdb的前置扩展用来实现了很多功能,比如标准的getset和hget,hset还有zset,zget,也实现了队列。当然pub/sub就没有办法实现了。毕竟它和redis还是有点区别。 基于标准的ssdb的类,写了

google的leveldb越来越被很多人接受。国内的ideawu基于leveldb还写了一个ssdb的前置扩展用来实现了很多功能,比如标准的getset和hget,hset还有zset,zget,也实现了队列。当然pub/sub就没有办法实现了。毕竟它和redis还是有点区别。

基于标准的ssdb的类,写了个小扩展,扩展了Yii的Cache类:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

class?CSsdbCache?extends?CCache??

{??

????/**?

?????*?@var?string?hostname?to?use?for?connecting?to?the?redis?server.?Defaults?to?'127.0.0.1'.?

?????*/??

????public?$hostname?=?'127.0.0.1';??

????/**?

?????*?@var?int?the?port?to?use?for?connecting?to?the?ssdb?server.?Default?port?is?8888.?

?????*/??

????public?$port?=?8888;??

????/**?

?????*?@var?float?

?????*/??

????public?$timeout?=?2000;??

????public?$serializer?=?false;??

????public?$_cache;??

????protected?$_cachekeys?=?'ssdb_cachekey';??

??????

????public?function?init()?{??

????????parent::init();??

????}??

????/**?

?????*?@return?SSDB?

?????*/??

????public?function?getSsdbCache()?{??

????????if?($this->_cache?!==?null)??

????????????return?$this->_cache;??

????????else?{??

????????????return?$this->_cache?=?new?SimpleSSDB($this->hostname,?$this->port,?$this->timeout);??

????????}??

????}??

????public?function?getkeys()?{??

????????return?$this->getSsdbCache()->hkeys($this->_cachekeys,?"",?"",?$this->getSsdbCache()->hsize($this->_cachekeys));??

????}??

????/**?

?????*?Retrieves?a?value?from?cache?with?a?specified?key.?

?????*?This?is?the?implementation?of?the?method?declared?in?the?parent?class.?

?????*?@param?string?$key?a?unique?key?identifying?the?cached?value?

?????*?@return?string|boolean?the?value?stored?in?cache,?false?if?the?value?is?not?in?the?cache?or?expired.?

?????*/??

????protected?function?getValue($key)?{??

????????return?unserialize($this->getSsdbCache()->get($key));??

????}??

??

????/**?

?????*?Stores?a?value?identified?by?a?key?in?cache.?

?????*?This?is?the?implementation?of?the?method?declared?in?the?parent?class.?

?????*?@param?string??$key????the?key?identifying?the?value?to?be?cached?

?????*?@param?string??$value??the?value?to?be?cached?

?????*?@param?integer?$expire?the?number?of?seconds?in?which?the?cached?value?will?expire.?0?means?never?expire.?

?????*?@return?boolean?true?if?the?value?is?successfully?stored?into?cache,?false?otherwise?

?????*/??

????protected?function?setValue($key,?$value,?$expire)?{??

????????$this->getSsdbCache()->hset($this->_cachekeys,?$key,?1);??

????????if?($expire?>?0)?{??

????????????//$expire?+=?time();??

????????????return?$this->getSsdbCache()->setx($key,?serialize($value),?(int)?$expire);??

????????}??

????????else?{??

????????????return?$this->getSsdbCache()->set($key,?serialize($value));??

????????}??

????}??

????/**?

?????*?Stores?a?value?identified?by?a?key?into?cache?if?the?cache?does?not?contain?this?key.?

?????*?This?is?the?implementation?of?the?method?declared?in?the?parent?class.?

?????*?@param?string??$key????the?key?identifying?the?value?to?be?cached?

?????*?@param?string??$value??the?value?to?be?cached?

?????*?@param?integer?$expire?the?number?of?seconds?in?which?the?cached?value?will?expire.?0?means?never?expire.?

?????*?@return?boolean?true?if?the?value?is?successfully?stored?into?cache,?false?otherwise?

?????*/??

????protected?function?addValue($key,?$value,?$expire)?{??

????????return?$this->setValue($key,?$value,?$expire);??

????}??

????/**?

?????*?Deletes?a?value?with?the?specified?key?from?cache?

?????*?This?is?the?implementation?of?the?method?declared?in?the?parent?class.?

?????*?@param?string?$key?the?key?of?the?value?to?be?deleted?

?????*?@return?boolean?if?no?error?happens?during?deletion?

?????*/??

????protected?function?deleteValue($key)?{??

????????$this->getSsdbCache()->hdel($this->_cachekeys,?$key);??

????????return?$this->getSsdbCache()->del($key);??

????}??

????/**?

?????*?@return?boolean?whether?the?flush?operation?was?successful.?

?????*/??

????protected?function?flushValues()?{??

????????$this->getSsdbCache()->multi_del($this->getkeys());??

????????return?$this->getSsdbCache()->hclear($this->_cachekeys);??

????}??

}??

Copy after login

其实代码很简单,不过由于ssdb默认没有serialize功能,所以在存储之前,得先主动的serialize,然后get的时候unserialize。不然就没有办法存储数组了。

由于ssdb没有flush功能。所以利用hget/hset将所有的key存储下来。flush的时候把hget获取的key读出来删除。然后再清掉这个hget的key

最后还有expire。ssdb里的setx第三个参数。。。居然不是expire,而是ttl。开始的时候,一直都当成expire。结果浪费了很长时间

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Google Pixel 9 and Pixel 9 Pro rumoured to gain Creative Assistant AI upon release Google Pixel 9 and Pixel 9 Pro rumoured to gain Creative Assistant AI upon release Jun 22, 2024 am 10:50 AM

Currently, four new Pixel smartphones are anticipated to land this autumn. To recap, the series is rumoured to feature thePixel 9 and Pixel 9 Pro at launch. However, the Pixel 9 Pro will be a rival to the iPhone 16 Pro rather than a Pixel 8 Pro (curr

Google AI announces Gemini 1.5 Pro and Gemma 2 for developers Google AI announces Gemini 1.5 Pro and Gemma 2 for developers Jul 01, 2024 am 07:22 AM

Google AI has started to provide developers with access to extended context windows and cost-saving features, starting with the Gemini 1.5 Pro large language model (LLM). Previously available through a waitlist, the full 2 million token context windo

Google app beta APK teardown reveals new extensions coming to Gemini AI assistant Google app beta APK teardown reveals new extensions coming to Gemini AI assistant Jul 30, 2024 pm 01:06 PM

Google's AI assistant, Gemini, is set to become even more capable, if the APK teardown of the latest update (v15.29.34.29 beta) is to be considered. The tech behemoth's new AI assistant could reportedly get several new extensions. These extensions wi

Google Tensor G4 of Pixel 9 Pro XL lags behind Tensor G2 in Genshin Impact Google Tensor G4 of Pixel 9 Pro XL lags behind Tensor G2 in Genshin Impact Aug 24, 2024 am 06:43 AM

Google recently responded to the performance concerns about the Tensor G4 of the Pixel 9 line. The company said that the SoC wasn't designed to beat benchmarks. Instead, the team focused on making it perform well in the areas where Google wants the c

Google Pixel 9 smartphones will not launch with Android 15 despite seven-year update commitment Google Pixel 9 smartphones will not launch with Android 15 despite seven-year update commitment Aug 01, 2024 pm 02:56 PM

The Pixel 9 series is almost here, having been scheduled for an August 13 release. Based on recent rumours, the Pixel 9, Pixel 9 Pro and Pixel 9 Pro XL will mirror the Pixel 8 and Pixel 8 Pro (curr. $749 on Amazon) by starting with 128 GB of storage.

Google Pixel 9 Pro XL gets tested with desktop mode Google Pixel 9 Pro XL gets tested with desktop mode Aug 29, 2024 pm 01:09 PM

Google has introduced DisplayPort Alternate Mode with the Pixel 8 series, and it's present on the newly launched Pixel 9 lineup. While it's mainly there to let you mirror the smartphone display with a connected screen, you can also use it for desktop

New Google Pixel desktop mode showcased in fresh video as possible Motorola Ready For and Samsung DeX alternative New Google Pixel desktop mode showcased in fresh video as possible Motorola Ready For and Samsung DeX alternative Aug 08, 2024 pm 03:05 PM

A few months have passed since Android Authority demonstrated a new Android desktop mode that Google had hidden away within Android 14 QPR3 Beta 2.1. Arriving hot on the heels of Google adding DisplayPort Alt Mode support for the Pixel 8 and Pixel 8

Google opens AI Test Kitchen & Imagen 3 to most users Google opens AI Test Kitchen & Imagen 3 to most users Sep 12, 2024 pm 12:17 PM

Google's AI Test Kitchen, which includes a suite of AI design tools for users to play with, has now opened up to users in well over 100 countries worldwide. This move marks the first time that many around the world will be able to use Imagen 3, Googl

See all articles