TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Vedis – An Embeddable Implementation of Redis

24 pointsby symisc_develabout 11 years ago

6 comments

shadowmintabout 11 years ago
<a href="http://vedis.symisc.net/licensing.html" rel="nofollow">http:&#x2F;&#x2F;vedis.symisc.net&#x2F;licensing.html</a><p><pre><code> Redistributions in any form must be accompanied by information on how to obtain complete source code for the Vedis engine and any accompanying software that uses the Vedis engine software. ... The commercial license permits closed-source distribution of an application to third parties. If you do not want to release the source code for your application, you may purchase a license from Symisc Systems. </code></pre> Ho hum.<p>Great project though, looks cool.
yjh0502about 11 years ago
It seems that multiple files are merged into single vedis.c file. It&#x27;s good for embedding into application, sqlite does the same, but I think it&#x27;s better to open original source code and a Makefile to generate embeddable source code, at least if they want to get contributions from community.
pbnjayabout 11 years ago
I understand why you want to trade in on the Redis name and brand, but this is NOT an &quot;Implementation of Redis&quot; in any way as far as I can tell. This is a facsimile of a subset of the commands available in redis.
nasalgoatabout 11 years ago
Wouldn&#x27;t you just store your values as an array?<p>The point of redis is having external, shared memory.
评论 #7759146 未加载
评论 #7759628 未加载
politicianabout 11 years ago
Can multiple processes access the same database? Or is the model similar to sqlite?
评论 #7759106 未加载
derefrabout 11 years ago
Random idea: this could probably be embedded quite easily into the Erlang VM. You&#x27;d then be able to spawn() &quot;a Vedis keyspace&quot; as easily (and scalably) as you can currently spawn an ETS table. Might be useful in place of both Mnesia and network-connected Redis.