GithubHelp home page GithubHelp logo

libmemcachedswift's Introduction

libMemcachedSwift

A small Swift package exposing libMemcached to Swift.

Installation

Install the libMemcached library on your computer. If you're using macOS, install Homebrew then run the command brew install libmemcached. If you're using Linux, run apt-get memcached libmemcached-dev as root.

Modify your Package.swift file to include the following dependency:

.package(url: "https://github.com/orungrau/libMemcachedSwift.git", from: "0.1.0")

Use

#if os(Linux)
import libMemcachedLinux
#else
import Darwin
import libMemcachedMac
#endif

var key: String = "key"
var value: String = "value"
var flags: UInt32 = 0;
var length: size_t = 0;
var rc: memcached_return?

var memc: UnsafeMutablePointer<memcached_st> = memcached_create(nil)

// Setup memcached server
memcached_server_add(memc, "localhost", 11211);

// Set value
rc = memcached_set(memc, key, strlen(key), value, strlen(value)+1, 0, flags);
if (rc != MEMCACHED_SUCCESS) {
    // handle an error
}

// Get value
var returnValue = memcached_get (memc, key, strlen(key), &length, &flags, &rc!);
if (rc == MEMCACHED_SUCCESS) {
    print(String(cString: returnValue!)) // Print string value
} else {
    // handle an error
}

memcached_free(memc);

libmemcachedswift's People

Contributors

orungrau avatar

Watchers

 avatar  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.