transaction
Here are 612 public repositories matching this topic...
-
Updated
Jul 8, 2020 - JavaScript
https://github.com/demopark/sequelize-docs-Zh-CN/blob/master/associations.md#%E5%A4%96%E9%94%AE
外键
当您在模型中创建关联时,会自动创建带约束的外键引用。 下面是设置:
const Task = sequelize.define('task', { title: Sequelize.STRING });
const User = sequelize.define('user', { username: Sequelize.STRING });
User.hasMany(Task); // 将会添加 userId 到 Task 模型
Task.belongsTo(User); // 也将会添加 userId 到 Task 模型
-
Updated
Jul 2, 2020 - Java
-
Updated
Jun 24, 2020 - Go
See api documentation at https://www.bitmex.com/app/restAPI
- feature request (1): get and plot market data for symbol XBT, (bitcoin)
- feature request (2): get account data and plot on dashboard, (account balance, open positions, etc.)
- feature request (3): create, modify and cancel limit orders
-
Updated
Jul 11, 2020 - Python
I have a use-case where two key-val should be inserted atomically (if not exist)and either insert fails should roll back. The 2nd key is a secondary index.
Key1= Hash1
Value1= Token1
Key2= Token1
Value2= json payload
How can I insert both atomically? Now if Key1 or Key2 (Token1) already exists, it should roll back the operation.
I see [HmsetWithTxn ](https://github.com/yongman
The architecture mentioned R API support, but I was not able to find documentation about it a all. Would you consider creating some sample recipes for R?
Thanks!
-
Updated
Jul 1, 2020 - Java
Speaks for itself - I think going forward we need to avoid code in markdown files, and have a sectioned examples folder.. But we need to do better on this front :P
Need test cases to cover error handling in batch_work_executor.py
-
Updated
Jun 20, 2020 - C
As interface shows below:
/**
* <p>
* Send batch messages to server.
*
* @param messages messages to be sent.
*/
void send(List<Message> messages);
This API can lead to multiple behaviors, such as sending to multiple partitions, or the same partition, so how should we define the behavior of this method?
And this issue exists in many places, suc
If I want to change the settings (for example to use the Dogecoin Mainnet), I need to manually enter #settings in the URL.
I am by far the least qualified person to review your work, but I find it relentlessly fascinating. I want your work to gain more traction, but I think that English is not your first language. I would like to offer my help to do some editing on your FP-complete posts to make them sound more natural in English. I can't offer much, but as I read through them I could offer some edits/questions that m
-
Updated
Apr 13, 2019 - JavaScript
-
Updated
Feb 27, 2020 - Swift
-
Updated
Jul 8, 2020 - C
There's a MiniTest warning in the test results, which obscure the output quite a lot.
A failed test output is hard to find among all those warnings about "global use of must_equal".
-
Updated
Jul 8, 2020 - JavaScript
-
Updated
Sep 23, 2019 - Java
-
Updated
Oct 28, 2019 - C
-
Updated
Mar 23, 2020 - JavaScript
To help us debug your issue please explain:
- What you were trying to do (and why)
- What happened (include command output)
- What you expected to happen
- Step-by-step reproduction instructions
Features
Please replace this section with:
- a detailed description of your proposed feature
- the motivation for the feature
- how the feature would be relevant to at least 90% of Plasma user
-
Updated
Jul 1, 2020 - C++
-
Updated
Mar 1, 2019
Improve this page
Add a description, image, and links to the transaction topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the transaction topic, visit your repo's landing page and select "manage topics."
1. Bug Description
SpringCloud+feign服务调用,参与方不回滚。例如:发起方A(注解使用的是@LcnTransaction,@transactional)
)通过feign调用参与方B(注解@LcnTransaction(propagation = DTXPropagation.SUPPORTS)
@transactional),B抛异常,A插入数据(不回滚)。
使用过的解决办法:
1,feign取消falback,不进行熔断,测试无效;
2,feign不取