Coder Social home page Coder Social logo

faycache's Introduction

FayCache

An attempt at a distributed cache scheme

Non-production level projects !!!

Just to learn and test my personal ideas !!!

Temporarily using the sdk import by go mod

go get https://github.com/Kirov7/FayCache
go mod tidy

test open server

func TestServer(t *testing.T) {
	c := cache.New(cache.STORAGE_INMEMORY)
	n, _ := cluster.NewCluster("127.0.0.1", "")
	tcp.NewTCPServer(c, n).Listen()
}

test client connection

func TestClient(t *testing.T) {
	cacheClient := client.New(client.SERVER_TCP, "127.0.0.1")

	cmds := []*client.Cmd{}
	for i := 1; i <= 100; i++ {
		var op client.COMMAND_TYPE
		if rand.Intn(2) == 1 {
			op = client.COMMAND_SET
		} else {
			op = client.COMMAND_GET
		}
		op = client.COMMAND_GET
		tempCmd := &client.Cmd{
			Name:  op,
			Key:   fmt.Sprintf("hello%d", i),
			Value: fmt.Sprintf("word%d", i),
		}
		// Support batch operation
		cmds = append(cmds, tempCmd)
		if i%5 == 0 {
			// Support for pipeline transmission
			cacheClient.PipelinedRun(cmds)
			if tempCmd.Error != nil {
				fmt.Println("error:", tempCmd.Error)
			}
			for _, cmd := range cmds {
				fmt.Println("key: ", cmd.Key, "value: ", cmd.Value)
			}
			cmds = []*client.Cmd{}
		}
	}
}

test set

func TestSet(t *testing.T) {
	cacheClient := client.New(client.SERVER_TCP, "127.0.0.1")
	cmds := []*client.Cmd{}
	for i := 1; i <= 100; i++ {
		var op client.COMMAND_TYPE
		if rand.Intn(2) == 1 {
			op = client.COMMAND_SET
		} else {
			op = client.COMMAND_GET
		}
		op = client.COMMAND_SET
		tempCmd := &client.Cmd{
			Name:  op,
			Key:   fmt.Sprintf("hello%d", i),
			Value: fmt.Sprintf("word%d", i),
		}
		cmds = append(cmds, tempCmd)
		if i%5 == 0 {
			cacheClient.PipelinedRun(cmds)
			if tempCmd.Error != nil {
				fmt.Println("error:", tempCmd.Error)
			} else {
				fmt.Println(tempCmd.Value)
			}
			cmds = []*client.Cmd{}
		}
	}
}

test get

func TestGet(t *testing.T) {
	cacheClient := client.New(client.SERVER_TCP, "127.0.0.1")
	for i := 1; i <= 100; i++ {
		var op client.COMMAND_TYPE
		op = client.COMMAND_GET
		tempCmd := &client.Cmd{
			Name:  op,
			Key:   fmt.Sprintf("hello%d", i),
			Value: fmt.Sprintf("word%d", i),
		}

		cacheClient.Run(tempCmd)
		if tempCmd.Error != nil {
			fmt.Println("error:", tempCmd.Error)
		} else {
			fmt.Println(tempCmd.Value)
		}
	}
}

faycache's People

Contributors

kirov7 avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.