hackersleepyhead
Hello,
what would be the best type for proto3 to handle NaiveDateTime from Elixir types.
message PostResponse {
string content = 1;
string id = 2;
google.protobuf.Timestamp inserted_at = 3;
google.protobuf.Timestamp updated_at = 4;
string user_id = 5;
}
I think Timestamp is not the best one, I want to have the NativeDateTime type value as it is.
any help would be appreciated.
Trending in Questions
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
I’m in search of an Elixir library that offers PDF generation capabilities similar to Ruby’s Prawn. While there have been discussions abo...
New
I’m looking to build a personal workflow to quickly deploy web applications written in elixir/phoenix, for local consumption (ie not on t...
New
Before I dive in myself, did anyone successfully sprinkle Hologram into their existing LiveView app?
Looking for hints regarding:
Addi...
New
Hi all, I wanted to ask how the community is dealing with post-release steps.
Today we have Ecto migrations, which make sure that the db...
New
Kia ora,
We have been using elixir-google-api to connect to Google Drive. However, with the updates to Tesla due to CVEs this is now bro...
New
Hello,
I have an Elixir backend that implements a custom protocol over TCP. I want to load test the backend and assess the performance o...
New
Other Trending Topics
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New
There has been a thread to discuss the Stack Overflow Developer Survey on this forum every year since 2018, so here’s yet another one for...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #phoenix_html
- #iex
- #graphql
- #ai
- #genstage
- #elixirconf-us
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #security
- #hex










First 8 of 8 Posts
dimitarvp
Well, NaiveDateTime is just a
struct/ map after all:The
calendarfield is usually the module/atomCalendar.ISOso you can strip it if you don’t deal with other calendars, and the special__struct__field, and then end up with this:You can then also remove the decimal precision value from
microsecondby usingelem(..., 0)and then you’ll just have seven unsigned 32-bit integers (which you can encode withint32since it uses variable-length encoding over the wire). That resulting map of seven integers can then very easily be described as a nested Protobuf structure afterwards.Of course, you can also convert the
NaiveDateTimeto UNIX seconds / milliseconds / microseconds / nanoseconds and just encode the whole thing as a 64-bit unsigned integer:hackersleepyhead
Thanks for the response @dimitarvp, this really helps, this way I can do it after fetching the data from DB and updated columns before passing it to
PostResponse.new(), and works for limited data sets.But the thing I have nested fields inside a list of a map and the list goes to 1000’s, is there a way where I could set this parser and a specified type globally so that can be applied all the
timestampsfield.dimitarvp
Well, Elixir is not one of the fastest languages (although it’s one of the fastest dynamic languages!) but without having sample data and some of your code, I can’t help further.
If you are feeling up for it, you can make a GitHub project with sample code and something like 3000-5000 of these records and we can both test implementations and benchmark. I’d like it and will help you with it.
But as for this:
…I am not sure I follow what you are saying. Can you clarify?
hackersleepyhead
Hey @dimitarvp
I really appreciate your time for this, thanks for your response.
Here is what I meant,
and In elixir, the response looks like
the above response will have multiple nested maps with
timestamp()fields, so if I parse after fetching the data from DB, I have to loop through all the nested maps, and also I feel like it won’t be generic. Is there a way or any suggestion to achieve this in a generic way??dimitarvp
Yeah, doesn’t seem like it right now.
Which library are you using to [de]serialize the data?
hackersleepyhead
I am using
elixir-grpc/grpcandgoogle_protosdimitarvp
Cool. So will you make a small GitHub project – with some sample data included – so we can iterate on this?
hackersleepyhead
For sure, I will create Repo for this, will get back to you.