EventStore: Open-Source, Functional Database with Complex Event Processing in JS
1–10 of 64 posts
Re: EventStore: Open-Source, Functional Database with Complex Event Processing in JS
#2Re: EventStore: Open-Source, Functional Database with Complex Event Processing in JS
#3Re: EventStore: Open-Source, Functional Database with Complex Event Processing in JS
#4Re: EventStore: Open-Source, Functional Database with Complex Event Processing in JS
#5"Functional Database" is contradictory. Honestly this sounds like a bunch of buzzwords concatenated together. Is there an example or a purpose for this?
I think the idea is that it's something simpler than a database. It's more like an append-only file that has on-insert triggers/durable running queries. (Sort of like https://www.pipelinedb.com/ does, or like blockchain nodes do.)
Or, you could think of it as message queue like Kafka, with permanent durability of all "messages", and a single fixed subscriber bolted onto the queue server, where that subscriber is exposed through the queue server's API, allowing users to reprogram it arbitrarily.
Re: EventStore: Open-Source, Functional Database with Complex Event Processing in JS
#6What's it good at? What is this the right tool for?
Re: EventStore: Open-Source, Functional Database with Complex Event Processing in JS
#7"Functional Database" is contradictory. Honestly this sounds like a bunch of buzzwords concatenated together. Is there an example or a purpose for this?
Re: EventStore: Open-Source, Functional Database with Complex Event Processing in JS
#8It's not a new concept.
Re: EventStore: Open-Source, Functional Database with Complex Event Processing in JS
#9Re: EventStore: Open-Source, Functional Database with Complex Event Processing in JS
#10What's it good at? What is this the right tool for?
Event-sourcing can be a really useful tool in many domains, but especially where having a state-of-the-art audit log is helpful.