Lockval Engine is free Game backend engine

Learn More Download

Lockval Engine is a distributed backend DATA engine

that can simulate the rules of the world in your imagination

Lockval Engine is commonly used in game backends

It integrates network gateway module, data storage module and logic script processing module, as well as triggers module.

You just need to deal with request, response and Get data , Calculation and Set data.

The change data will be automatically synchronized to the interface caller.

Multiple programming script support

Lua(5.1)

  • Lua a lightweight, high-level, multi-paradigm programming language.

JavaScript(TypeScript)

  • JavaScript is a lightweight, interpreted, or just-in-time compiled programming language with first-class functions.

Python(Starlark)

  • Starlark is a dialect of Python. Like Python, it is a dynamically typed language with high-level data types.

Golang

  • Go is a statically typed, compiled programming language. Use golang to achieve higher performance programs.

Read more …

Easy to use

run the code in playground (JS) (Python) (Lua)


// request
function main(input){
  // Get data
  input.GetSubVal(input.UID,"mBase","Count")
  input.GetAndLock()

  // Calculation
  let c = input.GetResp.IDKey[input.UID].
  	KeySub["mBase"].SubVal["Count"]
  let ci = Number(c)
  ci++
  c = ci.toString()
	
  // Set data
  input.PutSubVal(input.UID,"mBase","Count",c)
  input.PutAndUnlock()

  // response
  return { "resp": c }
}

Module(services) Introduction

gw

  • Responsible for processing data communication, sending requests to api, and synchronizing to callers when db data changes

api

  • Respond to the request and process the data using the user’s server-side script

db

  • Responsible for processing GetAndLock and PutAndUnlock, locking data when obtaining data, and unlocking data after modifying data. Data is cached in memory during use and released when not in use.

trigger

  • Provides a variety of triggers to trigger script execution, including: timer, cron, http action, upload script

Read more …

Why Lockval Engine

Learn Quickly

Lockval Engine is an out-of-the-box engine

You only need to download the apidemo program to run the engine

Through the online apidemo and playground projects, you can quickly understand the use of api.

Read more …

Build Quickly

You just need to surround request, response and Get data , Calculation and Set data.

that can complete a simple business development.

Read more …

All In One

You don’t need to think about how to choose a database,

how to design a protocol, design timers, triggers.

you only need to care about data processing to complete all the functions you need

Read more …