Which are the best options available if I want my MirageOS unikernel to store some information on an external DB (doesn't matter the type)? I had a look at different solutions but it seems that none of the libraries offering DB bindings are XEN-compatible. Last one I tried is Redis but apparently the ocaml library cannot be compiled for XEN.
Mirage OS and Xen - Storing data on a DB
215 Views Asked by Vittorio Cozzolino At
1
There are 1 best solutions below
Related Questions in XEN
- Xenserver can't add NFS ISO throught XenCenter
- Quest for a good xen single ip routing config with port forwarding
- Print all the VM's in XenServer using Java API
- setup xen on two phisical interfaces
- XenServer increase vm-disk error
- Whether Virsh migrate VM works with xen hypervisor?
- xenprof: Initialization failed. Intel Processor Model 45 for P6 class family is not supported
- Task Migration in Cloud
- How to retrieve xenstore parameters from WMI interface
- What's meaning of each bit of machine frame address for xen 64bit
- XEN core login process
- Get directory size with xen image
- Connection to xenserver7.2 from xapi throwing exception security.cert
- Hardware assisted virtualization on centos and 32_bit system
- virtual device driver for XenServer
Related Questions in MIRAGE
- MirageOS - Unable to build unikernel for XEN
- Does Cohttp_mirage.Client support TLS?
- MirageOS and Xen - Virtual interface unable to acquire IP address
- MirageOS - Http-fetch example
- Mirage OS and Xen - Storing data on a DB
- An VR app developed using google vr sdk for unity with android can be used on a Lenovo Mirage Solo with Daydream?
- ember mirage seed db dynamically
- Pass modules to other modules
- Using C library in mirageos
- Mirage undefined error (no route defined) when testing with Vue and Cypress
- Mirage JS add pagination data to response
- How is Docker related to exokernal approach like Mirage OS?
- Ember Observers getting broken
- Remove news, description and image from collection and communities
- connect localhost elastic search cluster on mirage
Related Questions in UNIKERNEL
- MirageOS - Unable to build unikernel for XEN
- MirageOS - Http-fetch example
- Mirage OS and Xen - Storing data on a DB
- Very strange SIGQUIT when try to switch from ring 0 to ring 3
- Docker Container compared with Unikernel
- Is it possible to run executables/binaries (Already built) as unikernels?
- HaLVM and threads
- Rump Kernel Tutorial Don't Know How To Set $OBJCOPY
- How is Docker related to exokernal approach like Mirage OS?
- Why are many "bare kernel+app" solutions targeting xen?
- how to build my Java app with OSv unikernel on Windows
- How to build a Xen unikernel of Mirage OS
- What is a unikernel?
- Build unikernel mirage on mac OS X
- did mirage OS implemented the linux kernel in OCaml?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
The Redis code looks like it should work on Xen. It appears (from a quick look) that there is a
Rediscore module and a separateRedis_lwtthat applies it toLwt_unix. You probably need to write a Mirage-equivalent version of this:https://github.com/0xffea/ocaml-redis/blob/master/src/redis_lwt.ml
Most bits would be the same, but things using Unix APIs would need changing. E.g the
Lwt_unix.socketwould need changing to using Mirage's TCP/IP API.