--
You received this message because you are subscribed to the Google Groups "CockroachDB" group.
To unsubscribe from this group and stop receiving emails from it, send an email to cockroach-db...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Hey tamir,
That's a funny coincidence. I was playing around with xgo a couple of days ago.
It looks hopeful since Brad and Ian are on the issue.
From a use case perspective, I know that we are only needing windows support for desktops, not servers.
Performance is not needed. We only are doing it this way because our whole stack is postresql based and moving to cockroachdb.
On the cloud servers we of course use Linux.
So one option, which might or might not be suitable is to not use rocksdb on windows, but instead leveldb. Of course it's a potential bug regression nightmare for the team. But I did the same thing on the Bleve search project. It was designed so that boltdb, leveldb or rocks dB could be used as the underlying storage engine.
We had to run Bleve on windows, so turned on boltdb. Then for the big cloud servers used the rocks dB engine.
Just an idea, workaround.
Yep
@Joe
So you're developing while it's not production-ready yet ? Curious when you plan to put to production? (since betas are still coming out with breaking changes)
--
You received this message because you are subscribed to a topic in the Google Groups "CockroachDB" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/cockroach-db/qmpjse5Qk9o/unsubscribe.
To unsubscribe from this group and all its topics, send an email to cockroach-db...@googlegroups.com.
Yep
On Tue, 31 May 2016, 23:30 Dorian Hoxha, <dorian...@gmail.com> wrote:
@Joe--
So you're developing while it's not production-ready yet ? Curious when you plan to put to production? (since betas are still coming out with breaking changes)
You received this message because you are subscribed to a topic in the Google Groups "CockroachDB" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/cockroach-db/qmpjse5Qk9o/unsubscribe.
To unsubscribe from this group and all its topics, send an email to cockroach-db+unsubscribe@googlegroups.com.
C# looks very close. The docker image and vscode integration turned the corner a week ago to the degree we need. No more freaky mono.
Roslyn works on OSX and you get great intellisense on your desktop.
Front end code using typescript is really nice. The intellisense and checking makes it possible to scale the front end development. There are still some loose edges but I personally find it much more productive than plain js or es2015 now.
Check it out on docker hub.
Yes I am using that driver.
Also for message queue the c# driver for NATS works well.
We are also using boltdb for shared kV stores. Was a bit pissy about the KV api of cockroach being closed :)
--
You received this message because you are subscribed to a topic in the Google Groups "CockroachDB" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/cockroach-db/qmpjse5Qk9o/unsubscribe.
To unsubscribe from this group and all its topics, send an email to cockroach-db...@googlegroups.com.
Btw I know it's bleeding. But there is a cost / payoff ratio. Thats really multi permutation and it depends on what your project is mostly.
You received this message because you are subscribed to the Google Groups "CockroachDB" group.
To unsubscribe from this group and stop receiving emails from it, send an email to cockroach-db...@googlegroups.com.
Absolutely. I am only doing blue sky due diligence. Not even at development level.
Use cases . Here goes :
kV & SQL in one dB is highly useful. At the moment we microservice / split them. Boltdb and postresql. But there is no 2 phases commit between them.
One dB that can run anywhere. It's why I was looking for a way of swapping out rocks for boltdb. Gets portability without changing all your middle tier.
Go easy on me here. This is blue sky ideas. Not production at all remember.