Realm
96 results found
-
Zithromax: The Clinically Proven Choice For Superior Infection Control
If you are looking for the best clinically proven antibiotic medicine for superior infection control and myasthenia gravis, then Zithromax is there for you.
It is available for you at the most affordable cost at the Sanford Pharmacy.
The active ingredients of this bacterial infection problem drug are Azithromycin.
1 vote -
Aciclovir Unveiled: Your Blueprint to Healthier Living and Vibrant Energy
Acyclovir is useful for treating infections caused by viruses and suitable to reduce cold sores around the mouth caused due to herpes simplex. The medicine is also effective in treating shingles (caused by ******* herpes zoster) as well as chickenpox virus spreading.
The medicine Acyclovir is also administered for treating varied viral infections in people who developed bacterial infections. Acyclovir treats cold sore along with shingles. If you have missed dose then it is essential to take it when you remember it. The medicine is also used to treat Shepes zoster and chicken pox.
1 vote -
Asthma Relief Made Simple: How to Use Budecort Inhaler for Maximum Results
The Budecort Inhaler is also called the Budesonide inhaler, which is useful for relieving asthma and COPD. The budesonide inhaler is suitable for curing chronic obstructive pulmonary disease. Many people have been suffering from acute asthma attacks, so choosing a budesonide inhaler is the best option. The steroid medicines are available in the Sanford Pharmacy, providing quick delivery.
1 vote -
Heal Pharmacy and Natamycin: Relief for Eye Infections
Heal Pharmacy focuses on making Hytrin easily available as an important drug in prostate health and hypertension treatment. Our portal makes ordering easier and more convenient, so ordering prescriptions is simplified and less hassle. Care for the customer: We believe in taking an extra step to help customers achieve the best results from their use of medications. With Heal Pharmacy, you receive efficient service with quick delivery, supporting your health goals with needed treatments accessible and fitted into your lifestyle.
More Details Visit On :
https://www.healpharmacy.com/eye-drops/natamycin-ophthalmic-suspension-ip-5-w-v-5-ml-eye-drops/
1 vote -
PHARMACY
GrantPharmacy offers the full range of essential drugs with strong prescriptions, for instance, Natamycin Ophthalmic Suspension Eye Drops to treat infections efficiently in the eyes caused by fungi, reliable parasite control composed of Fenbendazole, Hytrin, to assist people in managing the right blood pressure and maintaining prostate health.
More Details Visit On :
https://www.grantpharmacy.com/
https://www.grantpharmacy.com/natamycin-ophthalmic-suspension-ip-5-w-v-5-ml-eye-drops
1 vote -
Healthcare
At Sanford Pharmacy, we are devoted to turning in notable pharmaceutical products and services to satisfy all of your healthcare desires. We recognize the significance of accessibility, convenience, and custom designed care, this is why we provide a vast variety of prescription medicinal capsules, over the counter pills, and health products. Whether you need medicinal drugs for continual situations, quick-time period treatments, or ordinary health, Sanford Pharmacy has you covered with relied on manufacturers and dependable service. https://www.sanfordpharmacy.com/
1 vote -
Enhance Performance
Simplify Data Modeling : Improve the data modeling process, making it easier to define and manage schema.
1 vote -
Harmony OS NEXT
Harmony OS NEXT support for unity
1 vote -
adk add proxy
I am in China and the synchronization of Atlas often fails.
I urgently need the SDK to add proxy functionality1 vote -
Realm API to expose pending changesets not yet uploaded to remote server
It would be good if we had visibility in the state of the sync session, particularly around understand how many change sets are still on the local device and awaiting upload.
The use case is to easily (and accurately) report to a user that their local changes haven't yet been synced with other devices.
Ideally it would come in two flavours, one API to retrieve the current change set count, then support for a listener which would trigger when the number of pending change sets increases or decreases.
1 vote -
Realm Flexible device sync on serverless instance for small mobile apps
If you develop small mobile apps with (recommended flexible) data sync , you take a serverless instance because of not often syncs : but we can not do that yet : so Mongo is limited to big mobile apps ?
I suggest to add the possibility to do a Flexible device sync on serverless instance via an API (backend) supplied by Mongodb to ease quick deployment1 vote -
Decimal128
It would be very convenient if Decimal128 had options for string formatting - it could then for example, more easily be used for currency. Similar to how a Double can be formatted
As is, Swift Doubles have this feature:
let myDouble = 1999.95 let currencyFormatted = myDouble.formatted(.currency(code: "USD")) print(currencyFormatted)
and the output is
$1,999.95
My suggest is to add a formatted feature to Decimal128
let d = Decimal128(1999.95) let s = d.formatted(.currency(code: "USD"))
1 vote -
Allow a constructor with named parameters (dart sdk)
Please can the realm generate in flutter / dart offer an option to use named parameters in a constructor instead of requiring ordered paramaters? The rationale is that ofte we have many many parameters and it gets confusing to see which are which when many of them are integers, etc. Naming them as you go will make it easier to read. Also, please allow factory methods in the realm models that are automatically passed on / created in the generated files. eg: fromJson toJson fromCache, etc
1 vote -
Schema Migration for Synced Realm
Found this on the forum:
https://www.mongodb.com/community/forums/t/client-provided-invalid-schema-version/267007
Which pertains to enabling schema versioning. I'm working with a project that deals with data that has dynamic fields; default system fields, and user-defined fields(custom).
I'm using those fields to create rules, but now I'm limited to query for only system fields since the realm for now expects a static schema realm objects.
Based on the reply in the above issue, there'll be a feature release soon to solve it. It would really help to know when could that be and to possibly expedite it. Thanks!
5 votes -
General Undo/Redo system
We are working for about two years on a brand new Apple multi platform application (macOS, iPadOS/iOS) which uses a synched Realm.
The software makes it necessary that we provide a global undo/redo system. Well, we did it (in Swift), and it works. We are still in testing mode (especially when it comes to sync), but atm all looks not that shabby.
So, how great would it be if such an undo/redo was integrated into the core of Realm? I imagine we're not the only ones who would want that. 🤓
8 votes -
Would be great to have distinct as GraphQL operator
Currently GraphQL operator does not have distinct
https://www.mongodb.com/docs/atlas/app-services/graphql/types-and-resolvers/#input-types
Would be good to have this for improved performance. Currently we return all documents, and UI will perform the distinct operation which can be a problem if there are many documents in the collection.2 votes -
Realm C++ SDK cross-compile Qt(IOS)
It's always good idea to make it cross compile as core module can do.
1 vote -
Device Sync Access
Device sync is convenient but uncontrollable. For example, there are problems with database cache inconsistency, and occasionally synchronization errors may cause data rollback. These details cannot be controlled by programmers.
1 vote -
Enable calling a nested Atlas function from Swift SDK
Atlas app services allows organizing atlas functions into folders within a project, and you can call these nested functions from within other atlas functions. See this tip in your documentation for a quick explanation of this behavior: https://www.mongodb.com/docs/atlas/app-services/functions/#write-the-function-source-code
That said, it is not currently possible to call a nested atlas function from the Swift SDK (you can only call top-level functions from the Swift SDK). This means that all publicly accessible functions must be located in the top-level of my functions directory of my project, which makes my files very unorganized and hard to find the function I'm looking for.
…
1 vote -
App service (app_id) security enhancement
App service (app_id) security enhancement.
I am developing an App and using Realm to store data on the device and to synchronize that with my Mongo DB. Realm features finally seems to be working fine, however
I was surprised that only the App id is needed to reach my App service programmatically from code. There is no APP secret or key pairs... It seemed even more vulnerable when experienced that the default password change urls and confirmation mail URLs has my APP id in them.So I dont see any gate which would prevent any of my apps users to…
2 votes
- Don't see your idea?