I have sensor data for monitoring a solar array, m...
# orm-help
j
I have sensor data for monitoring a solar array, mostly voltage, current, temperature. The data is stored on chips. I’d like to avoid the use of a database - would prisma be a good option to interface with the chip directly (through a custom adaptor) instead of a database adaptor? Is this a use case for prisma, or is prisma only intended to be used with databases?
r
@Joe šŸ‘‹ Currently Prisma is only intended to be used with databases via the
datasource
block, but can be extended to other sources as well. It would be great if you could create a feature request here so that we could look into with the above use-case šŸ™‚
j
will do
šŸ’Æ 1